From 5465d8bbe91205075eb9187a20c6368ccfbfdcf1 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Wed, 1 Apr 2026 22:35:26 -0700 Subject: [PATCH 01/12] Replace chunked FLA with recurrent gated delta rule for T=1 decode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The chunked FLA pipeline (6 Triton kernels) is overkill for T=1 decode. Replace with plain PyTorch einsum ops that Inductor can fuse: - FLA GPU time: 1.085ms → 0.344ms/step (-68%) - Total GPU time: 12.0ms → 9.0ms/step (-25%) - Export changed to static T=1 with enable_dynamic_shape=False --- examples/models/qwen3_5_moe/export.py | 14 ++++----- examples/models/qwen3_5_moe/main.cpp | 20 +++++++++--- examples/models/qwen3_5_moe/model.py | 45 +++++++++++++++++++++------ 3 files changed, 57 insertions(+), 22 deletions(-) diff --git a/examples/models/qwen3_5_moe/export.py b/examples/models/qwen3_5_moe/export.py index 01125dc75e3..9ab94cf00bb 100644 --- a/examples/models/qwen3_5_moe/export.py +++ b/examples/models/qwen3_5_moe/export.py @@ -365,7 +365,7 @@ def export_and_lower(model, config, args): to_edge_transform_and_lower, ) from executorch.exir.passes import MemoryPlanningPass - from torch.export import Dim, export + from torch.export import export # Coordinate descent recompiles each kernel trying config perturbations, # adding minutes with negligible runtime benefit for this model's shapes. @@ -374,18 +374,16 @@ def export_and_lower(model, config, args): # -O0 compiles ~8x faster than -O1 with no measurable runtime impact. inductor_config.aot_inductor.compile_wrapper_opt_level = "O0" - # Dynamic shapes - example_tokens = torch.tensor([[0, 1]], dtype=torch.long) - example_input_pos = torch.tensor([0, 1], dtype=torch.long) - seq_dim = Dim("seq_len", min=1, max=config.max_seq_len - 1) - dynamic_shapes = ({1: seq_dim}, {0: seq_dim}) + # Static T=1: the C++ runner does token-by-token prefill + # (enable_dynamic_shape=False), so T is always 1 at runtime. + example_tokens = torch.tensor([[0]], dtype=torch.long) + example_input_pos = torch.tensor([0], dtype=torch.long) print("Exporting with torch.export...") with torch.no_grad(): exported = export( model, (example_tokens, example_input_pos), - dynamic_shapes=dynamic_shapes, strict=True, ) print("Export successful!") @@ -399,7 +397,7 @@ def export_and_lower(model, config, args): "get_n_layers": config.num_hidden_layers, "use_kv_cache": True, "use_sdpa_with_kv_cache": False, - "enable_dynamic_shape": True, + "enable_dynamic_shape": False, } et_prog = to_edge_transform_and_lower( exported, diff --git a/examples/models/qwen3_5_moe/main.cpp b/examples/models/qwen3_5_moe/main.cpp index 266d0e65419..39aea7967a8 100644 --- a/examples/models/qwen3_5_moe/main.cpp +++ b/examples/models/qwen3_5_moe/main.cpp @@ -54,22 +54,34 @@ int main(int argc, char** argv) { } // Create LLM runner + fprintf(stderr, "Creating runner from %s...\n", FLAGS_model_path.c_str()); auto runner = llm::create_text_llm_runner( FLAGS_model_path, std::move(tokenizer), data_files, FLAGS_temperature); if (runner == nullptr) { - ET_LOG(Error, "Failed to create runner"); + fprintf(stderr, "FATAL: Failed to create runner\n"); return 1; } + fprintf(stderr, "Runner created successfully\n"); // Generate llm::GenerationConfig config; config.temperature = FLAGS_temperature; config.max_new_tokens = FLAGS_max_new_tokens; - auto error = runner->generate(FLAGS_prompt.c_str(), config); - if (error != executorch::runtime::Error::Ok) { - ET_LOG(Error, "Generation failed"); + fprintf(stderr, "Starting generation with prompt: %s\n", FLAGS_prompt.c_str()); + try { + auto error = runner->generate(FLAGS_prompt.c_str(), config); + if (error != executorch::runtime::Error::Ok) { + fprintf(stderr, "Generation failed with error code: %d\n", static_cast(error)); + return 1; + } + fprintf(stderr, "Generation completed successfully\n"); + } catch (const std::exception& e) { + fprintf(stderr, "Exception during generation: %s\n", e.what()); + return 1; + } catch (...) { + fprintf(stderr, "Unknown exception during generation\n"); return 1; } diff --git a/examples/models/qwen3_5_moe/model.py b/examples/models/qwen3_5_moe/model.py index 1e2abba2b9f..32fe638ff1f 100644 --- a/examples/models/qwen3_5_moe/model.py +++ b/examples/models/qwen3_5_moe/model.py @@ -114,9 +114,9 @@ def __init__(self, dim, eps=1e-6): self.eps = eps def forward(self, x): - x_float = x.float() - normed = x_float * torch.rsqrt(x_float.pow(2).mean(-1, keepdim=True) + self.eps) - return (normed * (1.0 + self.weight.float())).type_as(x) + x_fp32 = x.float() + rms = torch.rsqrt(x_fp32.pow(2).mean(-1, keepdim=True) + self.eps) + return (x_fp32 * rms * (1.0 + self.weight.float())).to(x.dtype) class RMSNormGated(nn.Module): @@ -128,10 +128,10 @@ def __init__(self, dim, eps=1e-6): self.eps = eps def forward(self, x, z): - x_float = x.float() - normed = x_float * torch.rsqrt(x_float.pow(2).mean(-1, keepdim=True) + self.eps) - normed = self.weight * normed.type_as(x) - return (normed * F.silu(z.float())).type_as(x) + x_fp32 = x.float() + rms = torch.rsqrt(x_fp32.pow(2).mean(-1, keepdim=True) + self.eps) + normed = x_fp32 * rms + return (self.weight.float() * normed * torch.nn.functional.silu(z.float())).to(x.dtype) # --------------------------------------------------------------------------- @@ -390,11 +390,36 @@ def forward(self, x, input_pos): beta = b.sigmoid() g = -self.A_log.float().exp() * F.softplus(a.float() + self.dt_bias) - # FLA Triton kernel (returns final_state separately, does not mutate initial_state) - output, state = torch.ops.triton.chunk_gated_delta_rule( - q, k, v, g, beta, self.recurrent_state[:B] + # Recurrent gated delta rule — single-step update. + # The model is exported with static T=1 and the C++ runner does + # token-by-token prefill (enable_dynamic_shape=False), so T is + # always 1 at runtime. This replaces the 6-kernel chunked FLA + # pipeline with plain PyTorch ops that Inductor can fuse. + scale = self.head_k_dim**-0.5 + state = self.recurrent_state[:B].float() # [B, H, K, V] + + q_f = q[:, 0].float() # [B, H, K] + k_f = k[:, 0].float() # [B, H, K] + v_f = v[:, 0].float() # [B, H, V] + g_f = g[:, 0] # [B, H] + beta_f = beta[:, 0].float() # [B, H] + + # Decay state + state = state * g_f.exp().unsqueeze(-1).unsqueeze(-1) + + # Delta rule: error = v - S @ k + Sk = torch.einsum("bhkv,bhk->bhv", state, k_f) + delta = v_f - Sk + + # State update: S += beta * outer(k, delta) + state = state + beta_f.unsqueeze(-1).unsqueeze(-1) * torch.einsum( + "bhk,bhv->bhkv", k_f, delta ) + # Output: o = S @ q * scale + o = torch.einsum("bhkv,bhk->bhv", state, q_f) * scale + output = o.unsqueeze(1).to(v.dtype) # [B, 1, H, V] + with torch.no_grad(): self.recurrent_state[:B].copy_(state) From a6ebe8ad7f9e900cdd66e251d1ca12db014c6ac0 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Thu, 2 Apr 2026 20:49:51 -0700 Subject: [PATCH 02/12] Runtime dispatch: recurrent (T=1) vs chunked (T>1) inside triton_op Move decode/prefill dispatch inside the chunk_gated_delta_rule triton_op instead of using torch.cond at model level. This follows the same pattern as the SDPA triton_op (pow2/non-pow2 dispatch) and avoids torch.cond incompatibility with AOTI's FunctionalTensor pipeline. Changes: - chunk_gated_delta_rule.py: Add fused recurrent Triton kernel for T=1, refactor chunked pipeline into _launch_chunked(), dispatch via Python if inside the @triton_op wrapper - model.py: Remove torch.cond from GatedDeltaNet.forward(), call triton_op directly (dispatch is internal) - export.py: Single-method export with dynamic seq_len dim - main.cpp: Fix create_text_llm_runner API signature --- .../triton/kernels/chunk_gated_delta_rule.py | 389 +++++++++++------- examples/models/qwen3_5_moe/export.py | 24 +- examples/models/qwen3_5_moe/main.cpp | 29 +- examples/models/qwen3_5_moe/model.py | 32 +- 4 files changed, 272 insertions(+), 202 deletions(-) diff --git a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py index 437374457a1..91153446ccd 100644 --- a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py +++ b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py @@ -23,11 +23,17 @@ We unwrap via kernel.fn to get the inner @triton.autotune kernel and pass the heuristic-computed constexprs explicitly. +Runtime dispatch: when T=1 (decode), uses a fused recurrent kernel that is +~25% faster than the chunked path. When T>1 (prefill), uses the full chunked +FLA pipeline. Dispatch happens inside the triton_op Python wrapper, following +the same pattern as sdpa.py's pow2/non-pow2 dispatch. + Requires: pip install flash-linear-attention """ import torch import triton +import triton.language as tl from fla.ops.common.chunk_delta_h import chunk_gated_delta_rule_fwd_kernel_h_blockdim64 from fla.ops.common.chunk_o import chunk_fwd_kernel_o @@ -50,6 +56,231 @@ def _unwrap(kernel): return kernel +# --------------------------------------------------------------------------- +# Recurrent kernel: fused single-step gated delta rule for T=1 decode. +# +# Each thread block handles one (batch, head) pair. +# Iterates over V-tiles: for each V-tile, loads the K-dim of state, q, k, v, +# computes the gated delta rule update and output dot product. +# --------------------------------------------------------------------------- + + +@triton.jit +def _recurrent_gated_delta_rule_kernel( + # Pointers — all inputs [B, 1, H, *] squeezed to [B, H, *] + q_ptr, # [B, H, K] + k_ptr, # [B, H, K] + v_ptr, # [B, H, V] + g_ptr, # [B, H] + beta_ptr, # [B, H] + state_ptr, # [B, H, K, V] input state (read) + o_ptr, # [B, H, V] output + new_state_ptr, # [B, H, K, V] output state (write) + # Dims + K: tl.constexpr, + V: tl.constexpr, + BK: tl.constexpr, # block size for K dimension + BV: tl.constexpr, # block size for V dimension + scale: tl.constexpr, +): + # One block per (batch, head) + bh = tl.program_id(0) + + # Load scalar g and beta for this (b, h) + g_val = tl.load(g_ptr + bh).to(tl.float32) + beta_val = tl.load(beta_ptr + bh).to(tl.float32) + decay = tl.exp(g_val) + + # Load full q and k vectors: [K] + q_base = bh * K + k_base = bh * K + k_range = tl.arange(0, BK) + k_mask = k_range < K + + q_vec = tl.load(q_ptr + q_base + k_range, mask=k_mask, other=0.0).to(tl.float32) + k_vec = tl.load(k_ptr + k_base + k_range, mask=k_mask, other=0.0).to(tl.float32) + + # Process V in tiles + v_base = bh * V + state_base = bh * K * V # state: [K, V] for this (b, h) + + for v_start in range(0, V, BV): + v_range = v_start + tl.arange(0, BV) + v_mask = v_range < V + + # Load v tile: [BV] + v_tile = tl.load(v_ptr + v_base + v_range, mask=v_mask, other=0.0).to( + tl.float32 + ) + + # Load state tile: [BK, BV] — state[k, v] at state_base + k*V + v + s_offsets = k_range[:, None] * V + v_range[None, :] + s_mask = k_mask[:, None] & v_mask[None, :] + state_tile = tl.load( + state_ptr + state_base + s_offsets, mask=s_mask, other=0.0 + ).to(tl.float32) + + # Step 1: state *= exp(g) + state_tile = state_tile * decay + + # Step 2: Sk = state^T @ k → [BV] (dot product along K) + # Sk[v] = sum_k state[k, v] * k[k] + Sk = tl.sum(state_tile * k_vec[:, None], axis=0) + + # Step 3: delta = v - Sk + delta = v_tile - Sk + + # Step 4: state += beta * outer(k, delta) + state_tile = state_tile + beta_val * (k_vec[:, None] * delta[None, :]) + + # Step 5: o = state^T @ q → [BV] + o_tile = tl.sum(state_tile * q_vec[:, None], axis=0) * scale + + # Store output tile + tl.store(o_ptr + v_base + v_range, o_tile.to(o_ptr.dtype.element_ty), mask=v_mask) + + # Store new state tile + tl.store( + new_state_ptr + state_base + s_offsets, + state_tile.to(new_state_ptr.dtype.element_ty), + mask=s_mask, + ) + + +def _launch_recurrent(q, k, v, g, beta, initial_state, scale): + """Launch the recurrent kernel for T=1 decode. + + Args: + q, k, v: [B, 1, H, K/V] — single-step inputs + g, beta: [B, 1, H] — gating and write strength + initial_state: [B, H, K, V] — input hidden state + + Returns: + o: [B, 1, H, V] — output + final_state: [B, H, K, V] — updated hidden state (float32) + """ + B, _, H, K = q.shape + V = v.shape[-1] + + # Squeeze T=1 dim for kernel: [B, H, *] + q_2d = q[:, 0].contiguous() # [B, H, K] + k_2d = k[:, 0].contiguous() # [B, H, K] + v_2d = v[:, 0].contiguous() # [B, H, V] + g_2d = g[:, 0].contiguous() # [B, H] + beta_2d = beta[:, 0].contiguous() # [B, H] + + o_2d = torch.empty(B, H, V, device=q.device, dtype=q.dtype) + final_state = torch.empty(B, H, K, V, device=q.device, dtype=torch.float32) + + BK = triton.next_power_of_2(K) + BV = min(triton.next_power_of_2(V), 128) # cap tile size + + grid = (B * H,) + wrap_triton(_recurrent_gated_delta_rule_kernel)[grid]( + q_ptr=q_2d, + k_ptr=k_2d, + v_ptr=v_2d, + g_ptr=g_2d, + beta_ptr=beta_2d, + state_ptr=initial_state, + o_ptr=o_2d, + new_state_ptr=final_state, + K=K, + V=V, + BK=BK, + BV=BV, + scale=scale, + ) + + # Unsqueeze back to [B, 1, H, V] + o = o_2d.unsqueeze(1) + return o, final_state + + +# --------------------------------------------------------------------------- +# Chunked kernel: full FLA pipeline for T>1 prefill. +# --------------------------------------------------------------------------- + + +def _launch_chunked(q, k, v, g, beta, initial_state, scale): + """Launch the chunked FLA pipeline for T>1 prefill.""" + B, T, H, K = q.shape + V = v.shape[-1] + BT = CHUNK_SIZE + NT = triton.cdiv(T, BT) + + # 1. chunk_local_cumsum + g_cumsum = torch.empty(B, T, H, dtype=torch.float32, device=q.device) + wrap_triton(_unwrap(chunk_local_cumsum_scalar_kernel))[(NT, B * H)]( + s=g, o=g_cumsum, scale=0, cu_seqlens=0, chunk_indices=0, + T=T, B=B, H=H, BT=BT, + HEAD_FIRST=False, REVERSE=False, HAS_SCALE=False, IS_VARLEN=False, + ) + + # 2. chunk_scaled_dot_kkt + A = torch.empty(B, T, H, BT, device=q.device, dtype=torch.float32) + wrap_triton(_unwrap(chunk_scaled_dot_kkt_fwd_kernel))[(NT, B * H)]( + k=k, g=g_cumsum, beta=beta, A=A, + cu_seqlens=0, chunk_indices=0, + T=T, H=H, K=K, BT=BT, USE_G=True, IS_VARLEN=False, + ) + + # 3. solve_tril + Ai = torch.zeros_like(A, dtype=k.dtype) + wrap_triton(_unwrap(merge_16x16_to_64x64_inverse_kernel))[NT, B * H]( + A=A, Ai=Ai, cu_seqlens=0, chunk_indices=0, + T=T, H=H, BT=BT, USE_TMA=IS_TMA_SUPPORTED, IS_VARLEN=False, + ) + + # 4. recompute_w_u + w = torch.empty_like(k) + u = torch.empty_like(v) + wrap_triton(_unwrap(recompute_w_u_fwd_kernel))[(NT, B * H)]( + k=k, v=v, beta=beta, w=w, u=u, A=Ai, g=g_cumsum, + cu_seqlens=0, chunk_indices=0, + T=T, H=H, K=K, V=V, BT=BT, BK=64, BV=64, + USE_G=True, IS_VARLEN=False, + ) + + # 5. chunk_gated_delta_rule_fwd_h + h = torch.empty(B, NT, H, K, V, dtype=q.dtype, device=q.device) + final_state = torch.zeros(B, H, K, V, dtype=torch.float32, device=q.device) + v_new = torch.empty_like(v) + + def grid_h(meta): + return (triton.cdiv(V, meta["BV"]), B * H) + + wrap_triton(_unwrap(chunk_gated_delta_rule_fwd_kernel_h_blockdim64))[grid_h]( + k=k, v=u, w=w, v_new=v_new, g=g_cumsum, gk=0, + h=h, h0=initial_state, ht=final_state, + cu_seqlens=0, chunk_offsets=0, + T=T, H=H, K=K, V=V, BT=BT, + USE_EXP2=False, TRANSPOSE_STATE=False, USE_G=True, USE_GK=False, + USE_INITIAL_STATE=True, STORE_FINAL_STATE=True, + SAVE_NEW_VALUE=True, IS_VARLEN=False, + ) + + # 6. chunk_fwd_o + o = torch.empty_like(v) + + def grid_o(meta): + return (triton.cdiv(V, meta["BV"]), NT, B * H) + + wrap_triton(_unwrap(chunk_fwd_kernel_o))[grid_o]( + q=q, k=k, v=v_new, h=h, g=g_cumsum, g_gamma=0, o=o, + cu_seqlens=0, chunk_indices=0, scale=scale, + T=T, H=H, K=K, V=V, BT=BT, + TRANSPOSE_STATE=False, USE_G=True, USE_G_GAMMA=False, IS_VARLEN=False, + ) + + return o, final_state + + +# --------------------------------------------------------------------------- +# Public API: single triton_op with runtime dispatch. +# --------------------------------------------------------------------------- + + def _validate_inputs(q, k, v, g, beta, initial_state): B, T, H, K = q.shape V = v.shape[-1] @@ -68,12 +299,8 @@ def _validate_inputs(q, k, v, g, beta, initial_state): if not (q.dtype == k.dtype == v.dtype): raise ValueError("q, k, v must have the same dtype") if not ( - q.device - == k.device - == v.device - == g.device - == beta.device - == initial_state.device + q.device == k.device == v.device + == g.device == beta.device == initial_state.device ): raise ValueError("All tensors must be on the same device") if K > 256: @@ -90,7 +317,10 @@ def chunk_gated_delta_rule( initial_state: torch.Tensor, ) -> tuple[torch.Tensor, torch.Tensor]: """ - Chunked gated delta rule linear attention (forward only). + Gated delta rule linear attention (forward only). + + Runtime dispatch: T=1 uses a fused recurrent kernel (faster for decode), + T>1 uses the full chunked FLA pipeline (efficient for prefill). Args: q: [B, T, H, K] queries (should be L2-normalized, K <= 256) @@ -107,149 +337,12 @@ def chunk_gated_delta_rule( _validate_inputs(q, k, v, g, beta, initial_state) B, T, H, K = q.shape - V = v.shape[-1] - BT = CHUNK_SIZE - NT = triton.cdiv(T, BT) scale = K**-0.5 - # 1. chunk_local_cumsum: cumulative sum of g within each chunk - g_cumsum = torch.empty(B, T, H, dtype=torch.float32, device=q.device) - wrap_triton(_unwrap(chunk_local_cumsum_scalar_kernel))[(NT, B * H)]( - s=g, - o=g_cumsum, - scale=0, - cu_seqlens=0, - chunk_indices=0, - T=T, - B=B, - H=H, - BT=BT, - HEAD_FIRST=False, - REVERSE=False, - HAS_SCALE=False, - IS_VARLEN=False, - ) - - # 2. chunk_scaled_dot_kkt: compute beta * K * K^T with gating - A = torch.empty(B, T, H, BT, device=q.device, dtype=torch.float32) - wrap_triton(_unwrap(chunk_scaled_dot_kkt_fwd_kernel))[(NT, B * H)]( - k=k, - g=g_cumsum, - beta=beta, - A=A, - cu_seqlens=0, - chunk_indices=0, - T=T, - H=H, - K=K, - BT=BT, - USE_G=True, - IS_VARLEN=False, - ) - - # 3. solve_tril: (I + A)^{-1} via block triangular solve - # Output in k.dtype (not float32) to match FLA's solve_tril(output_dtype=k.dtype) - Ai = torch.zeros_like(A, dtype=k.dtype) - wrap_triton(_unwrap(merge_16x16_to_64x64_inverse_kernel))[NT, B * H]( - A=A, - Ai=Ai, - cu_seqlens=0, - chunk_indices=0, - T=T, - H=H, - BT=BT, - USE_TMA=IS_TMA_SUPPORTED, - IS_VARLEN=False, - ) - - # 4. recompute_w_u: WY representation - w = torch.empty_like(k) - u = torch.empty_like(v) - wrap_triton(_unwrap(recompute_w_u_fwd_kernel))[(NT, B * H)]( - k=k, - v=v, - beta=beta, - w=w, - u=u, - A=Ai, - g=g_cumsum, - cu_seqlens=0, - chunk_indices=0, - T=T, - H=H, - K=K, - V=V, - BT=BT, - BK=64, - BV=64, - USE_G=True, - IS_VARLEN=False, - ) - - # 5. chunk_gated_delta_rule_fwd_h: inter-chunk recurrence - h = torch.empty(B, NT, H, K, V, dtype=q.dtype, device=q.device) - final_state = torch.zeros(B, H, K, V, dtype=torch.float32, device=q.device) - v_new = torch.empty_like(v) - - def grid_h(meta): - return (triton.cdiv(V, meta["BV"]), B * H) - - wrap_triton(_unwrap(chunk_gated_delta_rule_fwd_kernel_h_blockdim64))[grid_h]( - k=k, - v=u, - w=w, - v_new=v_new, - g=g_cumsum, - gk=0, - h=h, - h0=initial_state, - ht=final_state, - cu_seqlens=0, - chunk_offsets=0, - T=T, - H=H, - K=K, - V=V, - BT=BT, - USE_EXP2=False, - TRANSPOSE_STATE=False, - USE_G=True, - USE_GK=False, - USE_INITIAL_STATE=True, - STORE_FINAL_STATE=True, - SAVE_NEW_VALUE=True, - IS_VARLEN=False, - ) - - # 6. chunk_fwd_o: output computation - o = torch.empty_like(v) - - def grid_o(meta): - return (triton.cdiv(V, meta["BV"]), NT, B * H) - - wrap_triton(_unwrap(chunk_fwd_kernel_o))[grid_o]( - q=q, - k=k, - v=v_new, - h=h, - g=g_cumsum, - g_gamma=0, - o=o, - cu_seqlens=0, - chunk_indices=0, - scale=scale, - T=T, - H=H, - K=K, - V=V, - BT=BT, - TRANSPOSE_STATE=False, - USE_G=True, - USE_G_GAMMA=False, - IS_VARLEN=False, - ) - - return o, final_state + if T == 1: + return _launch_recurrent(q, k, v, g, beta, initial_state, scale) + else: + return _launch_chunked(q, k, v, g, beta, initial_state, scale) @chunk_gated_delta_rule.register_fake diff --git a/examples/models/qwen3_5_moe/export.py b/examples/models/qwen3_5_moe/export.py index 9ab94cf00bb..406cdb95e72 100644 --- a/examples/models/qwen3_5_moe/export.py +++ b/examples/models/qwen3_5_moe/export.py @@ -365,7 +365,7 @@ def export_and_lower(model, config, args): to_edge_transform_and_lower, ) from executorch.exir.passes import MemoryPlanningPass - from torch.export import export + from torch.export import Dim, export # Coordinate descent recompiles each kernel trying config perturbations, # adding minutes with negligible runtime benefit for this model's shapes. @@ -374,16 +374,20 @@ def export_and_lower(model, config, args): # -O0 compiles ~8x faster than -O1 with no measurable runtime impact. inductor_config.aot_inductor.compile_wrapper_opt_level = "O0" - # Static T=1: the C++ runner does token-by-token prefill - # (enable_dynamic_shape=False), so T is always 1 at runtime. - example_tokens = torch.tensor([[0]], dtype=torch.long) - example_input_pos = torch.tensor([0], dtype=torch.long) + # --- Single method: dynamic T --- + # Runtime dispatch between recurrent (T=1) and chunked (T>1) happens + # inside the chunk_gated_delta_rule triton_op, not at model level. + tokens = torch.tensor([[0, 1]], dtype=torch.long) + input_pos = torch.tensor([0, 1], dtype=torch.long) + seq_dim = Dim("seq_len", min=1, max=config.max_seq_len - 1) + dynamic_shapes = ({1: seq_dim}, {0: seq_dim}) - print("Exporting with torch.export...") + print("Exporting model (single method, dynamic T)...") with torch.no_grad(): - exported = export( + prog = export( model, - (example_tokens, example_input_pos), + (tokens, input_pos), + dynamic_shapes=dynamic_shapes, strict=True, ) print("Export successful!") @@ -397,10 +401,10 @@ def export_and_lower(model, config, args): "get_n_layers": config.num_hidden_layers, "use_kv_cache": True, "use_sdpa_with_kv_cache": False, - "enable_dynamic_shape": False, + "enable_dynamic_shape": True, } et_prog = to_edge_transform_and_lower( - exported, + prog, partitioner=[CudaPartitioner(compile_specs)], compile_config=EdgeCompileConfig( _check_ir_validity=False, diff --git a/examples/models/qwen3_5_moe/main.cpp b/examples/models/qwen3_5_moe/main.cpp index 39aea7967a8..856ccc52d0f 100644 --- a/examples/models/qwen3_5_moe/main.cpp +++ b/examples/models/qwen3_5_moe/main.cpp @@ -9,12 +9,11 @@ #include #include -#include #include #include +#include #include -#include DEFINE_string(model_path, "", "Model .pte file path."); DEFINE_string(data_path, "", "Data file (.ptd) for CUDA backend."); @@ -24,6 +23,7 @@ DEFINE_double(temperature, 0.8, "Sampling temperature (0 = greedy)."); DEFINE_int32(max_new_tokens, 128, "Maximum tokens to generate."); namespace llm = ::executorch::extension::llm; +using ::executorch::runtime::Error; int main(int argc, char** argv) { gflags::ParseCommandLineFlags(&argc, &argv, true); @@ -37,11 +37,6 @@ int main(int argc, char** argv) { return 1; } - std::vector data_files; - if (!FLAGS_data_path.empty()) { - data_files.push_back(FLAGS_data_path); - } - // Load tokenizer auto tokenizer = std::make_unique(); auto tok_status = tokenizer->load(FLAGS_tokenizer_path); @@ -53,15 +48,17 @@ int main(int argc, char** argv) { return 1; } - // Create LLM runner - fprintf(stderr, "Creating runner from %s...\n", FLAGS_model_path.c_str()); + // Single-method runner: "forward" handles both prefill (T>1) and decode (T=1) + // via torch.cond dispatch inside the model. + fprintf(stderr, "Loading model from %s...\n", FLAGS_model_path.c_str()); + std::optional data_path = + FLAGS_data_path.empty() ? std::nullopt + : std::optional(FLAGS_data_path); auto runner = llm::create_text_llm_runner( - FLAGS_model_path, std::move(tokenizer), data_files, FLAGS_temperature); - - if (runner == nullptr) { - fprintf(stderr, "FATAL: Failed to create runner\n"); - return 1; - } + FLAGS_model_path, + std::move(tokenizer), + data_path, + FLAGS_temperature); fprintf(stderr, "Runner created successfully\n"); // Generate @@ -72,7 +69,7 @@ int main(int argc, char** argv) { fprintf(stderr, "Starting generation with prompt: %s\n", FLAGS_prompt.c_str()); try { auto error = runner->generate(FLAGS_prompt.c_str(), config); - if (error != executorch::runtime::Error::Ok) { + if (error != Error::Ok) { fprintf(stderr, "Generation failed with error code: %d\n", static_cast(error)); return 1; } diff --git a/examples/models/qwen3_5_moe/model.py b/examples/models/qwen3_5_moe/model.py index 32fe638ff1f..a7e783b38d8 100644 --- a/examples/models/qwen3_5_moe/model.py +++ b/examples/models/qwen3_5_moe/model.py @@ -390,36 +390,12 @@ def forward(self, x, input_pos): beta = b.sigmoid() g = -self.A_log.float().exp() * F.softplus(a.float() + self.dt_bias) - # Recurrent gated delta rule — single-step update. - # The model is exported with static T=1 and the C++ runner does - # token-by-token prefill (enable_dynamic_shape=False), so T is - # always 1 at runtime. This replaces the 6-kernel chunked FLA - # pipeline with plain PyTorch ops that Inductor can fuse. - scale = self.head_k_dim**-0.5 - state = self.recurrent_state[:B].float() # [B, H, K, V] - - q_f = q[:, 0].float() # [B, H, K] - k_f = k[:, 0].float() # [B, H, K] - v_f = v[:, 0].float() # [B, H, V] - g_f = g[:, 0] # [B, H] - beta_f = beta[:, 0].float() # [B, H] - - # Decay state - state = state * g_f.exp().unsqueeze(-1).unsqueeze(-1) - - # Delta rule: error = v - S @ k - Sk = torch.einsum("bhkv,bhk->bhv", state, k_f) - delta = v_f - Sk - - # State update: S += beta * outer(k, delta) - state = state + beta_f.unsqueeze(-1).unsqueeze(-1) * torch.einsum( - "bhk,bhv->bhkv", k_f, delta + # Gated delta rule: dispatch happens inside the triton_op + # (recurrent kernel for T=1 decode, chunked FLA for T>1 prefill). + output, state = torch.ops.triton.chunk_gated_delta_rule( + q, k, v, g, beta, self.recurrent_state[:B] ) - # Output: o = S @ q * scale - o = torch.einsum("bhkv,bhk->bhv", state, q_f) * scale - output = o.unsqueeze(1).to(v.dtype) # [B, 1, H, V] - with torch.no_grad(): self.recurrent_state[:B].copy_(state) From fc5018edc3bd552fd844a190a3d5d9e066f6e3ea Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Thu, 2 Apr 2026 21:07:24 -0700 Subject: [PATCH 03/12] Revert model.py, export.py, main.cpp to main branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Only chunk_gated_delta_rule.py needs modification — dispatch logic is internal to the triton_op, no model/export/runner changes needed. --- examples/models/qwen3_5_moe/export.py | 16 +++++----- examples/models/qwen3_5_moe/main.cpp | 43 +++++++++++---------------- examples/models/qwen3_5_moe/model.py | 17 +++++------ 3 files changed, 32 insertions(+), 44 deletions(-) diff --git a/examples/models/qwen3_5_moe/export.py b/examples/models/qwen3_5_moe/export.py index 406cdb95e72..01125dc75e3 100644 --- a/examples/models/qwen3_5_moe/export.py +++ b/examples/models/qwen3_5_moe/export.py @@ -374,19 +374,17 @@ def export_and_lower(model, config, args): # -O0 compiles ~8x faster than -O1 with no measurable runtime impact. inductor_config.aot_inductor.compile_wrapper_opt_level = "O0" - # --- Single method: dynamic T --- - # Runtime dispatch between recurrent (T=1) and chunked (T>1) happens - # inside the chunk_gated_delta_rule triton_op, not at model level. - tokens = torch.tensor([[0, 1]], dtype=torch.long) - input_pos = torch.tensor([0, 1], dtype=torch.long) + # Dynamic shapes + example_tokens = torch.tensor([[0, 1]], dtype=torch.long) + example_input_pos = torch.tensor([0, 1], dtype=torch.long) seq_dim = Dim("seq_len", min=1, max=config.max_seq_len - 1) dynamic_shapes = ({1: seq_dim}, {0: seq_dim}) - print("Exporting model (single method, dynamic T)...") + print("Exporting with torch.export...") with torch.no_grad(): - prog = export( + exported = export( model, - (tokens, input_pos), + (example_tokens, example_input_pos), dynamic_shapes=dynamic_shapes, strict=True, ) @@ -404,7 +402,7 @@ def export_and_lower(model, config, args): "enable_dynamic_shape": True, } et_prog = to_edge_transform_and_lower( - prog, + exported, partitioner=[CudaPartitioner(compile_specs)], compile_config=EdgeCompileConfig( _check_ir_validity=False, diff --git a/examples/models/qwen3_5_moe/main.cpp b/examples/models/qwen3_5_moe/main.cpp index 856ccc52d0f..266d0e65419 100644 --- a/examples/models/qwen3_5_moe/main.cpp +++ b/examples/models/qwen3_5_moe/main.cpp @@ -9,11 +9,12 @@ #include #include +#include #include #include -#include #include +#include DEFINE_string(model_path, "", "Model .pte file path."); DEFINE_string(data_path, "", "Data file (.ptd) for CUDA backend."); @@ -23,7 +24,6 @@ DEFINE_double(temperature, 0.8, "Sampling temperature (0 = greedy)."); DEFINE_int32(max_new_tokens, 128, "Maximum tokens to generate."); namespace llm = ::executorch::extension::llm; -using ::executorch::runtime::Error; int main(int argc, char** argv) { gflags::ParseCommandLineFlags(&argc, &argv, true); @@ -37,6 +37,11 @@ int main(int argc, char** argv) { return 1; } + std::vector data_files; + if (!FLAGS_data_path.empty()) { + data_files.push_back(FLAGS_data_path); + } + // Load tokenizer auto tokenizer = std::make_unique(); auto tok_status = tokenizer->load(FLAGS_tokenizer_path); @@ -48,37 +53,23 @@ int main(int argc, char** argv) { return 1; } - // Single-method runner: "forward" handles both prefill (T>1) and decode (T=1) - // via torch.cond dispatch inside the model. - fprintf(stderr, "Loading model from %s...\n", FLAGS_model_path.c_str()); - std::optional data_path = - FLAGS_data_path.empty() ? std::nullopt - : std::optional(FLAGS_data_path); + // Create LLM runner auto runner = llm::create_text_llm_runner( - FLAGS_model_path, - std::move(tokenizer), - data_path, - FLAGS_temperature); - fprintf(stderr, "Runner created successfully\n"); + FLAGS_model_path, std::move(tokenizer), data_files, FLAGS_temperature); + + if (runner == nullptr) { + ET_LOG(Error, "Failed to create runner"); + return 1; + } // Generate llm::GenerationConfig config; config.temperature = FLAGS_temperature; config.max_new_tokens = FLAGS_max_new_tokens; - fprintf(stderr, "Starting generation with prompt: %s\n", FLAGS_prompt.c_str()); - try { - auto error = runner->generate(FLAGS_prompt.c_str(), config); - if (error != Error::Ok) { - fprintf(stderr, "Generation failed with error code: %d\n", static_cast(error)); - return 1; - } - fprintf(stderr, "Generation completed successfully\n"); - } catch (const std::exception& e) { - fprintf(stderr, "Exception during generation: %s\n", e.what()); - return 1; - } catch (...) { - fprintf(stderr, "Unknown exception during generation\n"); + auto error = runner->generate(FLAGS_prompt.c_str(), config); + if (error != executorch::runtime::Error::Ok) { + ET_LOG(Error, "Generation failed"); return 1; } diff --git a/examples/models/qwen3_5_moe/model.py b/examples/models/qwen3_5_moe/model.py index a7e783b38d8..1e2abba2b9f 100644 --- a/examples/models/qwen3_5_moe/model.py +++ b/examples/models/qwen3_5_moe/model.py @@ -114,9 +114,9 @@ def __init__(self, dim, eps=1e-6): self.eps = eps def forward(self, x): - x_fp32 = x.float() - rms = torch.rsqrt(x_fp32.pow(2).mean(-1, keepdim=True) + self.eps) - return (x_fp32 * rms * (1.0 + self.weight.float())).to(x.dtype) + x_float = x.float() + normed = x_float * torch.rsqrt(x_float.pow(2).mean(-1, keepdim=True) + self.eps) + return (normed * (1.0 + self.weight.float())).type_as(x) class RMSNormGated(nn.Module): @@ -128,10 +128,10 @@ def __init__(self, dim, eps=1e-6): self.eps = eps def forward(self, x, z): - x_fp32 = x.float() - rms = torch.rsqrt(x_fp32.pow(2).mean(-1, keepdim=True) + self.eps) - normed = x_fp32 * rms - return (self.weight.float() * normed * torch.nn.functional.silu(z.float())).to(x.dtype) + x_float = x.float() + normed = x_float * torch.rsqrt(x_float.pow(2).mean(-1, keepdim=True) + self.eps) + normed = self.weight * normed.type_as(x) + return (normed * F.silu(z.float())).type_as(x) # --------------------------------------------------------------------------- @@ -390,8 +390,7 @@ def forward(self, x, input_pos): beta = b.sigmoid() g = -self.A_log.float().exp() * F.softplus(a.float() + self.dt_bias) - # Gated delta rule: dispatch happens inside the triton_op - # (recurrent kernel for T=1 decode, chunked FLA for T>1 prefill). + # FLA Triton kernel (returns final_state separately, does not mutate initial_state) output, state = torch.ops.triton.chunk_gated_delta_rule( q, k, v, g, beta, self.recurrent_state[:B] ) From c90a8e8778a20e597b4c68c8c1e978dc4a7cb8d4 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Thu, 2 Apr 2026 21:10:44 -0700 Subject: [PATCH 04/12] Add tests for recurrent (T=1) and multi-T dispatch - test_recurrent_t1: verify T=1 recurrent kernel against FLA naive reference across all FLA test configs - test_dispatch_multiple_seq_lengths: verify correctness for T in {1, 2, 32, 63, 64, 65, 128, 256}, covering both dispatch paths and chunk boundary edge cases --- .../cuda/tests/test_chunk_gated_delta_rule.py | 93 ++++++++++++++++--- 1 file changed, 80 insertions(+), 13 deletions(-) diff --git a/backends/cuda/tests/test_chunk_gated_delta_rule.py b/backends/cuda/tests/test_chunk_gated_delta_rule.py index 6ce177dd70a..be01de2c8bc 100644 --- a/backends/cuda/tests/test_chunk_gated_delta_rule.py +++ b/backends/cuda/tests/test_chunk_gated_delta_rule.py @@ -42,7 +42,8 @@ from torch.export import export -B, T, H, K, V = 1, 128, 4, 64, 64 +B, H, K, V = 1, 4, 64, 64 +T = 128 # default T for chunked tests EXECUTORCH_ROOT = os.path.normpath(os.path.join(os.path.dirname(__file__), "../../..")) RUNNER_PATH = os.path.join(EXECUTORCH_ROOT, "cmake-out", "executor_runner") @@ -88,19 +89,20 @@ def _make_inputs_from_fla( gate_logit_normalizer, mask_p=0.0, nonzero_h0=False, + seq_len=T, dtype=torch.bfloat16, device="cuda", ): """Generate inputs following FLA test_chunk() conventions.""" torch.manual_seed(seed) - q = torch.rand(B, T, H, K, dtype=dtype, device=device) - k = torch.rand(B, T, H, K, dtype=dtype, device=device) - v = torch.rand(B, T, H, V, dtype=dtype, device=device) - beta = torch.rand(B, T, H, dtype=torch.float32, device=device).sigmoid().to(dtype) - g = F.logsigmoid(torch.rand(B, T, H, dtype=torch.float32, device=device)) + q = torch.rand(B, seq_len, H, K, dtype=dtype, device=device) + k = torch.rand(B, seq_len, H, K, dtype=dtype, device=device) + v = torch.rand(B, seq_len, H, V, dtype=dtype, device=device) + beta = torch.rand(B, seq_len, H, dtype=torch.float32, device=device).sigmoid().to(dtype) + g = F.logsigmoid(torch.rand(B, seq_len, H, dtype=torch.float32, device=device)) g = (g / gate_logit_normalizer).to(dtype) if mask_p > 0: - g = g * (torch.rand(B, T, H, dtype=dtype, device=device) > mask_p) + g = g * (torch.rand(B, seq_len, H, dtype=dtype, device=device) > mask_p) if nonzero_h0: h0 = torch.randn(B, H, K, V, dtype=dtype, device=device) else: @@ -108,12 +110,12 @@ def _make_inputs_from_fla( return q, k, v, g, beta, h0 -def _make_inputs(dtype=torch.bfloat16, device="cuda"): - q = torch.randn(B, T, H, K, dtype=dtype, device=device) - k = torch.randn(B, T, H, K, dtype=dtype, device=device) - v = torch.randn(B, T, H, V, dtype=dtype, device=device) - g = F.logsigmoid(torch.randn(B, T, H, dtype=dtype, device=device)) - beta = torch.rand(B, T, H, dtype=dtype, device=device).sigmoid() +def _make_inputs(seq_len=T, dtype=torch.bfloat16, device="cuda"): + q = torch.randn(B, seq_len, H, K, dtype=dtype, device=device) + k = torch.randn(B, seq_len, H, K, dtype=dtype, device=device) + v = torch.randn(B, seq_len, H, V, dtype=dtype, device=device) + g = F.logsigmoid(torch.randn(B, seq_len, H, dtype=dtype, device=device)) + beta = torch.rand(B, seq_len, H, dtype=dtype, device=device).sigmoid() initial_state = torch.randn(B, H, K, V, dtype=dtype, device=device) return q, k, v, g, beta, initial_state @@ -252,6 +254,71 @@ def test_eager_matches_fla(self): self.assertLess((o_ours.float() - o_ref.float()).abs().max().item(), 0.01) + def test_recurrent_t1(self): + """T=1 (decode) uses recurrent kernel — verify vs naive reference.""" + from fla.ops.gated_delta_rule.naive import naive_recurrent_gated_delta_rule + + model = ChunkGatedDeltaModel().eval() + for seed, norm, mask_p, nonzero_h0, desc in FLA_TEST_CONFIGS: + with self.subTest(desc=desc): + inputs = _make_inputs_from_fla(seed, norm, mask_p, nonzero_h0, seq_len=1) + q, k, v, g, beta, h0 = inputs + + with torch.no_grad(): + o_ours, s_ours = model(q, k, v, g, beta, h0) + + o_ref, s_ref = naive_recurrent_gated_delta_rule( + q=F.normalize(q, p=2, dim=-1), + k=F.normalize(k, p=2, dim=-1), + v=v, + beta=beta, + g=g, + initial_state=h0, + output_final_state=True, + ) + + self.assertEqual(o_ours.shape, torch.Size([B, 1, H, V])) + self.assertEqual(s_ours.shape, torch.Size([B, H, K, V])) + o_diff = (o_ours.float() - o_ref.float()).abs().max().item() + s_diff = (s_ours.float() - s_ref.float()).abs().max().item() + self.assertLess(o_diff, 0.01, f"{desc}: output diff {o_diff}") + self.assertLess(s_diff, 0.01, f"{desc}: state diff {s_diff}") + + def test_dispatch_multiple_seq_lengths(self): + """Verify correctness across T values hitting both dispatch paths.""" + from fla.ops.gated_delta_rule.naive import naive_recurrent_gated_delta_rule + + model = ChunkGatedDeltaModel().eval() + # T=1 → recurrent, T>1 → chunked; include boundary values + for seq_len in [1, 2, 32, 63, 64, 65, 128, 256]: + with self.subTest(T=seq_len): + inputs = _make_inputs_from_fla(42, 1.0, 0.0, True, seq_len=seq_len) + q, k, v, g, beta, h0 = inputs + + with torch.no_grad(): + o_ours, s_ours = model(q, k, v, g, beta, h0) + + o_ref, s_ref = naive_recurrent_gated_delta_rule( + q=F.normalize(q, p=2, dim=-1), + k=F.normalize(k, p=2, dim=-1), + v=v, + beta=beta, + g=g, + initial_state=h0, + output_final_state=True, + ) + + self.assertEqual(o_ours.shape, torch.Size([B, seq_len, H, V])) + self.assertEqual(s_ours.shape, torch.Size([B, H, K, V])) + o_diff = (o_ours.float() - o_ref.float()).abs().max().item() + s_diff = (s_ours.float() - s_ref.float()).abs().max().item() + self.assertLess( + o_diff, 0.02, f"T={seq_len}: output diff {o_diff}" + ) + self.assertLess( + s_diff, 0.02, f"T={seq_len}: state diff {s_diff}" + ) + def test_export_cuda(self): with tempfile.TemporaryDirectory() as tmpdir: pte_path = export_chunk_gated_delta(tmpdir) From ce3e9ca1931ab8f6d254c840ce39e8cbbb0b273e Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Thu, 2 Apr 2026 21:23:16 -0700 Subject: [PATCH 05/12] lint fix - 2 --- .../cuda/tests/test_chunk_gated_delta_rule.py | 18 +- .../triton/kernels/chunk_gated_delta_rule.py | 142 +- examples/models/qwen3_5_moe/bench_fla.py | 140 + .../models/qwen3_5_moe/test_recurrent_fla.py | 104 + profile_qwen35.py | 168 + profile_qwen35_moe.py | 91 + qwen35_moe_exports/export.log | 160 + qwen35_moe_exports/export_cond.log | 162 + qwen35_moe_exports/export_cond2.log | 14975 ++++++++ qwen35_moe_exports/export_dispatch.log | 29785 ++++++++++++++++ test_cond_full.py | 85 + test_dispatch.py | 54 + test_recurrent.py | 109 + 13 files changed, 45953 insertions(+), 40 deletions(-) create mode 100644 examples/models/qwen3_5_moe/bench_fla.py create mode 100644 examples/models/qwen3_5_moe/test_recurrent_fla.py create mode 100644 profile_qwen35.py create mode 100644 profile_qwen35_moe.py create mode 100644 qwen35_moe_exports/export.log create mode 100644 qwen35_moe_exports/export_cond.log create mode 100644 qwen35_moe_exports/export_cond2.log create mode 100644 qwen35_moe_exports/export_dispatch.log create mode 100644 test_cond_full.py create mode 100644 test_dispatch.py create mode 100644 test_recurrent.py diff --git a/backends/cuda/tests/test_chunk_gated_delta_rule.py b/backends/cuda/tests/test_chunk_gated_delta_rule.py index be01de2c8bc..b37365bdec4 100644 --- a/backends/cuda/tests/test_chunk_gated_delta_rule.py +++ b/backends/cuda/tests/test_chunk_gated_delta_rule.py @@ -98,7 +98,11 @@ def _make_inputs_from_fla( q = torch.rand(B, seq_len, H, K, dtype=dtype, device=device) k = torch.rand(B, seq_len, H, K, dtype=dtype, device=device) v = torch.rand(B, seq_len, H, V, dtype=dtype, device=device) - beta = torch.rand(B, seq_len, H, dtype=torch.float32, device=device).sigmoid().to(dtype) + beta = ( + torch.rand(B, seq_len, H, dtype=torch.float32, device=device) + .sigmoid() + .to(dtype) + ) g = F.logsigmoid(torch.rand(B, seq_len, H, dtype=torch.float32, device=device)) g = (g / gate_logit_normalizer).to(dtype) if mask_p > 0: @@ -261,7 +265,9 @@ def test_recurrent_t1(self): model = ChunkGatedDeltaModel().eval() for seed, norm, mask_p, nonzero_h0, desc in FLA_TEST_CONFIGS: with self.subTest(desc=desc): - inputs = _make_inputs_from_fla(seed, norm, mask_p, nonzero_h0, seq_len=1) + inputs = _make_inputs_from_fla( + seed, norm, mask_p, nonzero_h0, seq_len=1 + ) q, k, v, g, beta, h0 = inputs with torch.no_grad(): @@ -312,12 +318,8 @@ def test_dispatch_multiple_seq_lengths(self): self.assertEqual(s_ours.shape, torch.Size([B, H, K, V])) o_diff = (o_ours.float() - o_ref.float()).abs().max().item() s_diff = (s_ours.float() - s_ref.float()).abs().max().item() - self.assertLess( - o_diff, 0.02, f"T={seq_len}: output diff {o_diff}" - ) - self.assertLess( - s_diff, 0.02, f"T={seq_len}: state diff {s_diff}" - ) + self.assertLess(o_diff, 0.02, f"T={seq_len}: output diff {o_diff}") + self.assertLess(s_diff, 0.02, f"T={seq_len}: state diff {s_diff}") def test_export_cuda(self): with tempfile.TemporaryDirectory() as tmpdir: diff --git a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py index 91153446ccd..7d61cfe4282 100644 --- a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py +++ b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py @@ -68,13 +68,13 @@ def _unwrap(kernel): @triton.jit def _recurrent_gated_delta_rule_kernel( # Pointers — all inputs [B, 1, H, *] squeezed to [B, H, *] - q_ptr, # [B, H, K] - k_ptr, # [B, H, K] - v_ptr, # [B, H, V] - g_ptr, # [B, H] - beta_ptr, # [B, H] + q_ptr, # [B, H, K] + k_ptr, # [B, H, K] + v_ptr, # [B, H, V] + g_ptr, # [B, H] + beta_ptr, # [B, H] state_ptr, # [B, H, K, V] input state (read) - o_ptr, # [B, H, V] output + o_ptr, # [B, H, V] output new_state_ptr, # [B, H, K, V] output state (write) # Dims K: tl.constexpr, @@ -137,7 +137,9 @@ def _recurrent_gated_delta_rule_kernel( o_tile = tl.sum(state_tile * q_vec[:, None], axis=0) * scale # Store output tile - tl.store(o_ptr + v_base + v_range, o_tile.to(o_ptr.dtype.element_ty), mask=v_mask) + tl.store( + o_ptr + v_base + v_range, o_tile.to(o_ptr.dtype.element_ty), mask=v_mask + ) # Store new state tile tl.store( @@ -212,34 +214,74 @@ def _launch_chunked(q, k, v, g, beta, initial_state, scale): # 1. chunk_local_cumsum g_cumsum = torch.empty(B, T, H, dtype=torch.float32, device=q.device) wrap_triton(_unwrap(chunk_local_cumsum_scalar_kernel))[(NT, B * H)]( - s=g, o=g_cumsum, scale=0, cu_seqlens=0, chunk_indices=0, - T=T, B=B, H=H, BT=BT, - HEAD_FIRST=False, REVERSE=False, HAS_SCALE=False, IS_VARLEN=False, + s=g, + o=g_cumsum, + scale=0, + cu_seqlens=0, + chunk_indices=0, + T=T, + B=B, + H=H, + BT=BT, + HEAD_FIRST=False, + REVERSE=False, + HAS_SCALE=False, + IS_VARLEN=False, ) # 2. chunk_scaled_dot_kkt A = torch.empty(B, T, H, BT, device=q.device, dtype=torch.float32) wrap_triton(_unwrap(chunk_scaled_dot_kkt_fwd_kernel))[(NT, B * H)]( - k=k, g=g_cumsum, beta=beta, A=A, - cu_seqlens=0, chunk_indices=0, - T=T, H=H, K=K, BT=BT, USE_G=True, IS_VARLEN=False, + k=k, + g=g_cumsum, + beta=beta, + A=A, + cu_seqlens=0, + chunk_indices=0, + T=T, + H=H, + K=K, + BT=BT, + USE_G=True, + IS_VARLEN=False, ) # 3. solve_tril Ai = torch.zeros_like(A, dtype=k.dtype) wrap_triton(_unwrap(merge_16x16_to_64x64_inverse_kernel))[NT, B * H]( - A=A, Ai=Ai, cu_seqlens=0, chunk_indices=0, - T=T, H=H, BT=BT, USE_TMA=IS_TMA_SUPPORTED, IS_VARLEN=False, + A=A, + Ai=Ai, + cu_seqlens=0, + chunk_indices=0, + T=T, + H=H, + BT=BT, + USE_TMA=IS_TMA_SUPPORTED, + IS_VARLEN=False, ) # 4. recompute_w_u w = torch.empty_like(k) u = torch.empty_like(v) wrap_triton(_unwrap(recompute_w_u_fwd_kernel))[(NT, B * H)]( - k=k, v=v, beta=beta, w=w, u=u, A=Ai, g=g_cumsum, - cu_seqlens=0, chunk_indices=0, - T=T, H=H, K=K, V=V, BT=BT, BK=64, BV=64, - USE_G=True, IS_VARLEN=False, + k=k, + v=v, + beta=beta, + w=w, + u=u, + A=Ai, + g=g_cumsum, + cu_seqlens=0, + chunk_indices=0, + T=T, + H=H, + K=K, + V=V, + BT=BT, + BK=64, + BV=64, + USE_G=True, + IS_VARLEN=False, ) # 5. chunk_gated_delta_rule_fwd_h @@ -251,13 +293,30 @@ def grid_h(meta): return (triton.cdiv(V, meta["BV"]), B * H) wrap_triton(_unwrap(chunk_gated_delta_rule_fwd_kernel_h_blockdim64))[grid_h]( - k=k, v=u, w=w, v_new=v_new, g=g_cumsum, gk=0, - h=h, h0=initial_state, ht=final_state, - cu_seqlens=0, chunk_offsets=0, - T=T, H=H, K=K, V=V, BT=BT, - USE_EXP2=False, TRANSPOSE_STATE=False, USE_G=True, USE_GK=False, - USE_INITIAL_STATE=True, STORE_FINAL_STATE=True, - SAVE_NEW_VALUE=True, IS_VARLEN=False, + k=k, + v=u, + w=w, + v_new=v_new, + g=g_cumsum, + gk=0, + h=h, + h0=initial_state, + ht=final_state, + cu_seqlens=0, + chunk_offsets=0, + T=T, + H=H, + K=K, + V=V, + BT=BT, + USE_EXP2=False, + TRANSPOSE_STATE=False, + USE_G=True, + USE_GK=False, + USE_INITIAL_STATE=True, + STORE_FINAL_STATE=True, + SAVE_NEW_VALUE=True, + IS_VARLEN=False, ) # 6. chunk_fwd_o @@ -267,10 +326,25 @@ def grid_o(meta): return (triton.cdiv(V, meta["BV"]), NT, B * H) wrap_triton(_unwrap(chunk_fwd_kernel_o))[grid_o]( - q=q, k=k, v=v_new, h=h, g=g_cumsum, g_gamma=0, o=o, - cu_seqlens=0, chunk_indices=0, scale=scale, - T=T, H=H, K=K, V=V, BT=BT, - TRANSPOSE_STATE=False, USE_G=True, USE_G_GAMMA=False, IS_VARLEN=False, + q=q, + k=k, + v=v_new, + h=h, + g=g_cumsum, + g_gamma=0, + o=o, + cu_seqlens=0, + chunk_indices=0, + scale=scale, + T=T, + H=H, + K=K, + V=V, + BT=BT, + TRANSPOSE_STATE=False, + USE_G=True, + USE_G_GAMMA=False, + IS_VARLEN=False, ) return o, final_state @@ -299,8 +373,12 @@ def _validate_inputs(q, k, v, g, beta, initial_state): if not (q.dtype == k.dtype == v.dtype): raise ValueError("q, k, v must have the same dtype") if not ( - q.device == k.device == v.device - == g.device == beta.device == initial_state.device + q.device + == k.device + == v.device + == g.device + == beta.device + == initial_state.device ): raise ValueError("All tensors must be on the same device") if K > 256: diff --git a/examples/models/qwen3_5_moe/bench_fla.py b/examples/models/qwen3_5_moe/bench_fla.py new file mode 100644 index 00000000000..b8040bdbd85 --- /dev/null +++ b/examples/models/qwen3_5_moe/bench_fla.py @@ -0,0 +1,140 @@ +"""Benchmark recurrent vs chunked FLA in full model decode with torch.compile. + +Usage: + # Recurrent (current code): + python bench_fla.py --prequantized ~/models/Qwen3.5-35B-A3B-HQQ-INT4-local --mode recurrent + # Chunked (original FLA triton kernels): + python bench_fla.py --prequantized ~/models/Qwen3.5-35B-A3B-HQQ-INT4-local --mode chunked +""" +import argparse +import time +import torch + + +def patch_chunked(): + """Restore chunked FLA in GatedDeltaNet before model construction.""" + import executorch.examples.models.qwen3_5_moe.model as mod + + original_forward = mod.GatedDeltaNet.forward + + def chunked_forward(self, x, input_pos): + """GatedDeltaNet.forward using chunked FLA triton kernels.""" + import torch.nn.functional as F + + B, T, _ = x.size() + + reset = (input_pos[0] == 0).to(self.conv_state.dtype) + keep = 1.0 - reset + self.conv_state[:B].mul_(keep) + self.recurrent_state[:B].mul_(keep) + + proj = self.in_proj(x) + cd = self.conv_dim + vd = self.value_dim + nh = self.num_v_heads + mixed_qkv = proj[..., :cd] + z = proj[..., cd : cd + vd].reshape(B, T, self.num_v_heads, self.head_v_dim) + b = proj[..., cd + vd : cd + vd + nh] + a = proj[..., cd + vd + nh :] + + qkv_t = mixed_qkv.transpose(1, 2) + conv_input = torch.cat([self.conv_state[:B], qkv_t], dim=-1) + with torch.no_grad(): + self.conv_state[:B].copy_(conv_input[:, :, -self.conv_kernel_size :]) + w = self.conv1d.weight.squeeze(1).float() + T_conv = conv_input.shape[-1] - self.conv_kernel_size + 1 + acc = torch.zeros( + B, conv_input.shape[1], T_conv, + dtype=torch.float32, device=conv_input.device, + ) + for k in range(self.conv_kernel_size): + acc = acc + conv_input[:, :, k : k + T_conv].float() * w[:, k : k + 1] + qkv_conv = F.silu(acc[:, :, -T:]).to(conv_input.dtype).transpose(1, 2) + + kd = self.key_dim + q = qkv_conv[..., :kd].reshape(B, T, self.num_k_heads, self.head_k_dim) + k = qkv_conv[..., kd : 2 * kd].reshape(B, T, self.num_k_heads, self.head_k_dim) + v = qkv_conv[..., 2 * kd :].reshape(B, T, self.num_v_heads, self.head_v_dim) + + q = F.normalize(q, p=2, dim=-1) + k = F.normalize(k, p=2, dim=-1) + + if self.head_repeat > 1: + q = q.repeat_interleave(self.head_repeat, dim=2) + k = k.repeat_interleave(self.head_repeat, dim=2) + + beta = b.sigmoid() + g = -self.A_log.float().exp() * F.softplus(a.float() + self.dt_bias) + + # Use chunked FLA triton kernels + output, state = torch.ops.triton.chunk_gated_delta_rule( + q, k, v, g, beta, self.recurrent_state[:B] + ) + with torch.no_grad(): + self.recurrent_state[:B].copy_(state) + + output = output.reshape(-1, self.head_v_dim) + z = z.reshape(-1, self.head_v_dim) + output = self.norm(output, z) + output = output.reshape(B, T, -1) + + return self.out_proj(output) + + mod.GatedDeltaNet.forward = chunked_forward + print("Patched: using chunked FLA triton kernels") + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--prequantized", required=True) + parser.add_argument("--mode", choices=["recurrent", "chunked"], required=True) + parser.add_argument("--steps", type=int, default=50) + parser.add_argument("--warmup", type=int, default=30) + parser.add_argument("--no-compile", action="store_true") + args = parser.parse_args() + + # Patch BEFORE any model import if chunked + if args.mode == "chunked": + patch_chunked() + + import executorch.backends.cuda.triton.kernels # register triton ops + from executorch.examples.models.qwen3_5_moe.export import load_prequantized_model + from executorch.examples.models.qwen3_5_moe.inference import _move_to_cuda + + print("Loading model...") + model, config = load_prequantized_model(args.prequantized, max_seq_len=4096) + _move_to_cuda(model, config) + model.eval() + + if not args.no_compile: + print("Compiling with torch.compile...") + model = torch.compile(model, mode="default") + + # Warmup + print(f"Warming up ({args.warmup} steps)...") + with torch.no_grad(): + for i in range(args.warmup): + tok = torch.tensor([[1]], dtype=torch.long, device="cuda") + pos = torch.tensor([i], dtype=torch.long, device="cuda") + model(tok, pos) + torch.cuda.synchronize() + + # Benchmark + print(f"Benchmarking ({args.steps} decode steps)...") + torch.cuda.synchronize() + t0 = time.perf_counter() + with torch.no_grad(): + for i in range(args.steps): + tok = torch.tensor([[1]], dtype=torch.long, device="cuda") + pos = torch.tensor([args.warmup + i], dtype=torch.long, device="cuda") + model(tok, pos) + torch.cuda.synchronize() + elapsed = time.perf_counter() - t0 + + tok_s = args.steps / elapsed + ms_per_step = elapsed / args.steps * 1000 + print(f"\nResult [{args.mode}]: {tok_s:.1f} tok/s ({ms_per_step:.2f} ms/step, {args.steps} steps)") + + +if __name__ == "__main__": + main() diff --git a/examples/models/qwen3_5_moe/test_recurrent_fla.py b/examples/models/qwen3_5_moe/test_recurrent_fla.py new file mode 100644 index 00000000000..13f2345cd03 --- /dev/null +++ b/examples/models/qwen3_5_moe/test_recurrent_fla.py @@ -0,0 +1,104 @@ +"""Validate recurrent gated delta rule vs chunked FLA version.""" +import torch +import torch.nn.functional as F + +# Import the chunked version +import executorch.backends.cuda.triton.kernels # register triton ops + + +def recurrent_gated_delta_rule(q, k, v, g, beta, initial_state): + """Recurrent gated delta rule (reference implementation).""" + B, T, H, K = q.shape + V = v.shape[-1] + scale = K**-0.5 + state = initial_state.float() + + outputs = [] + for t in range(T): + q_t = q[:, t].float() + k_t = k[:, t].float() + v_t = v[:, t].float() + g_t = g[:, t] + beta_t = beta[:, t].float() + + state = state * g_t.exp().unsqueeze(-1).unsqueeze(-1) + Sk = torch.einsum("bhkv,bhk->bhv", state, k_t) + delta = v_t - Sk + state = state + beta_t.unsqueeze(-1).unsqueeze(-1) * torch.einsum( + "bhk,bhv->bhkv", k_t, delta + ) + o_t = torch.einsum("bhkv,bhk->bhv", state, q_t) * scale + outputs.append(o_t) + + output = torch.stack(outputs, dim=1).to(q.dtype) + return output, state + + +def test_correctness(): + """Compare recurrent vs chunked for T=1.""" + torch.manual_seed(42) + B, T, H, K, V = 1, 1, 32, 128, 128 + + q = F.normalize(torch.randn(B, T, H, K, device="cuda", dtype=torch.bfloat16), dim=-1) + k = F.normalize(torch.randn(B, T, H, K, device="cuda", dtype=torch.bfloat16), dim=-1) + v = torch.randn(B, T, H, V, device="cuda", dtype=torch.bfloat16) + g = -torch.rand(B, T, H, device="cuda", dtype=torch.float32) # negative log-space + beta = torch.rand(B, T, H, device="cuda", dtype=torch.bfloat16).sigmoid() + initial_state = torch.randn(B, H, K, V, device="cuda", dtype=torch.bfloat16) * 0.01 + + # Chunked version + with torch.no_grad(): + o_chunked, s_chunked = torch.ops.triton.chunk_gated_delta_rule( + q, k, v, g, beta, initial_state + ) + + # Recurrent version + with torch.no_grad(): + o_recurrent, s_recurrent = recurrent_gated_delta_rule( + q, k, v, g, beta, initial_state + ) + + # Compare + o_diff = (o_chunked.float() - o_recurrent.float()).abs().max().item() + s_diff = (s_chunked.float() - s_recurrent.float()).abs().max().item() + + print(f"T=1 correctness check:") + print(f" Output max diff: {o_diff:.6f}") + print(f" State max diff: {s_diff:.6f}") + + # Also test T>1 for completeness + T2 = 4 + q2 = F.normalize(torch.randn(B, T2, H, K, device="cuda", dtype=torch.bfloat16), dim=-1) + k2 = F.normalize(torch.randn(B, T2, H, K, device="cuda", dtype=torch.bfloat16), dim=-1) + v2 = torch.randn(B, T2, H, V, device="cuda", dtype=torch.bfloat16) + g2 = -torch.rand(B, T2, H, device="cuda", dtype=torch.float32) + beta2 = torch.rand(B, T2, H, device="cuda", dtype=torch.bfloat16).sigmoid() + state2 = torch.randn(B, H, K, V, device="cuda", dtype=torch.bfloat16) * 0.01 + + with torch.no_grad(): + o_chunked2, s_chunked2 = torch.ops.triton.chunk_gated_delta_rule( + q2, k2, v2, g2, beta2, state2 + ) + o_recurrent2, s_recurrent2 = recurrent_gated_delta_rule( + q2, k2, v2, g2, beta2, state2 + ) + + o_diff2 = (o_chunked2.float() - o_recurrent2.float()).abs().max().item() + s_diff2 = (s_chunked2.float() - s_recurrent2.float()).abs().max().item() + + print(f"\nT={T2} correctness check:") + print(f" Output max diff: {o_diff2:.6f}") + print(f" State max diff: {s_diff2:.6f}") + + # Relative errors + o_rel = o_diff / (o_chunked.float().abs().max().item() + 1e-10) + s_rel = s_diff / (s_chunked.float().abs().max().item() + 1e-10) + print(f"\nT=1 relative errors: output={o_rel:.6f}, state={s_rel:.6f}") + + passed = o_diff < 0.01 and s_diff < 0.01 + print(f"\n{'PASS' if passed else 'FAIL'}") + return passed + + +if __name__ == "__main__": + test_correctness() diff --git a/profile_qwen35.py b/profile_qwen35.py new file mode 100644 index 00000000000..9854f42f829 --- /dev/null +++ b/profile_qwen35.py @@ -0,0 +1,168 @@ +"""Profile Qwen3.5 MoE inference with torch.profiler for operator-level breakdown.""" + +import argparse +import os +import time + +import torch + +from executorch.examples.models.qwen3_5_moe.inference import _move_to_cuda, _sample +from executorch.examples.models.qwen3_5_moe.export import load_prequantized_model + + +def generate_with_profile( + model, tokenizer, prompt, max_new_tokens=16, temperature=0.0, eos_token_ids=None, + warmup_tokens=0, +): + """Generate text and profile the decode phase.""" + if eos_token_ids is None: + eos_token_ids = set() + + input_ids = tokenizer.encode(prompt).ids + + # === Prefill (no profiling, just get through it) === + print(f"Prefilling {len(input_ids)} tokens...") + with torch.no_grad(): + for i, tok_id in enumerate(input_ids): + tok = torch.tensor([[tok_id]], dtype=torch.long, device="cuda") + pos = torch.tensor([i], dtype=torch.long, device="cuda") + logits = model(tok, pos) + + # Sample first token + next_token = _sample(logits[:, -1, :], temperature) + generated = [next_token.item()] + seq_len = len(input_ids) + + # === Warmup decode tokens (no profiling) === + print(f"Warming up {warmup_tokens} decode tokens...") + with torch.no_grad(): + for i in range(warmup_tokens): + pos = torch.tensor([seq_len + i], device="cuda") + logits = model(next_token.unsqueeze(0), pos) + next_token = _sample(logits[:, -1, :], temperature) + tok_id = next_token.item() + generated.append(tok_id) + if tok_id in eos_token_ids: + print(" (hit EOS during warmup)") + return tokenizer.decode(generated), None + + torch.cuda.synchronize() + + # === Profiled decode tokens === + print(f"Profiling {max_new_tokens} decode tokens...") + profile_start_idx = warmup_tokens + + with torch.no_grad(): + with torch.profiler.profile( + activities=[ + torch.profiler.ProfilerActivity.CPU, + torch.profiler.ProfilerActivity.CUDA, + ], + record_shapes=True, + with_stack=False, + ) as prof: + for i in range(max_new_tokens): + idx = profile_start_idx + i + pos = torch.tensor([seq_len + idx], device="cuda") + logits = model(next_token.unsqueeze(0), pos) + next_token = _sample(logits[:, -1, :], temperature) + tok_id = next_token.item() + generated.append(tok_id) + if tok_id in eos_token_ids: + print(" (hit EOS during profiling)") + break + + torch.cuda.synchronize() + return tokenizer.decode(generated), prof + + +def main(): + parser = argparse.ArgumentParser(description="Profile Qwen3.5 MoE inference") + parser.add_argument( + "--prequantized", + required=True, + help="Path to prequantized bundle directory", + ) + parser.add_argument("--prompt", default="What is the capital of France?") + parser.add_argument("--max-new-tokens", type=int, default=16, + help="Number of decode tokens to profile") + parser.add_argument("--warmup-tokens", type=int, default=4, + help="Number of decode tokens to run before profiling") + parser.add_argument("--temperature", type=float, default=0.0) + parser.add_argument("--max-seq-len", type=int, default=32768) + parser.add_argument("--no-compile", action="store_true", + help="Disable torch.compile") + parser.add_argument("--trace-output", type=str, default=None, + help="Path to save Chrome trace JSON (optional)") + parser.add_argument("--row-limit", type=int, default=50, + help="Number of rows in profiler table") + args = parser.parse_args() + + # Register Triton kernels + import executorch.backends.cuda.triton.kernels # noqa: F401 + + # Load model + print(f"Loading model from {args.prequantized}...") + model, config = load_prequantized_model( + args.prequantized, max_seq_len=args.max_seq_len + ) + _move_to_cuda(model, config) + model.eval() + + # Compile + if not args.no_compile: + print("Compiling model with torch.compile...") + model = torch.compile(model, mode="default") + + # Load tokenizer + tokenizer_path = os.path.join(args.prequantized, "tokenizer.json") + from tokenizers import Tokenizer + tokenizer = Tokenizer.from_file(tokenizer_path) + + # EOS tokens + eos_token_ids = set() + for tok in ["<|im_end|>", "<|endoftext|>"]: + ids = tokenizer.encode(tok).ids + if len(ids) == 1: + eos_token_ids.add(ids[0]) + + # Run profiled generation + t0 = time.perf_counter() + output, prof = generate_with_profile( + model, tokenizer, args.prompt, + max_new_tokens=args.max_new_tokens, + warmup_tokens=args.warmup_tokens, + temperature=args.temperature, + eos_token_ids=eos_token_ids, + ) + elapsed = time.perf_counter() - t0 + + print(f"\n{'='*80}") + print(f"Generated text: {output}") + print(f"Total time: {elapsed:.2f}s") + print(f"{'='*80}\n") + + if prof is not None: + # Print CUDA time breakdown + print("=" * 80) + print("OPERATOR-LEVEL BREAKDOWN (sorted by CUDA time total)") + print("=" * 80) + print(prof.key_averages().table( + sort_by="cuda_time_total", row_limit=args.row_limit + )) + + print("\n" + "=" * 80) + print("OPERATOR-LEVEL BREAKDOWN (sorted by CUDA time, grouped by input shape)") + print("=" * 80) + print(prof.key_averages(group_by_input_shape=True).table( + sort_by="cuda_time_total", row_limit=args.row_limit + )) + + # Save Chrome trace if requested + if args.trace_output: + prof.export_chrome_trace(args.trace_output) + print(f"\nChrome trace saved to: {args.trace_output}") + + +if __name__ == "__main__": + main() diff --git a/profile_qwen35_moe.py b/profile_qwen35_moe.py new file mode 100644 index 00000000000..4d4d3550fc2 --- /dev/null +++ b/profile_qwen35_moe.py @@ -0,0 +1,91 @@ +"""Profile Qwen3.5 MoE decode-phase inference with torch.profiler. + +Loads the prequantized model in eager mode (no torch.compile), +runs prefill + warmup decode steps, then profiles ~16 decode steps +and prints the top 30 CUDA operators by total CUDA time. +""" + +import torch +from torch.profiler import profile, ProfilerActivity + +# Register Triton kernels (fused MoE, GatedDeltaNet) +import executorch.backends.cuda.triton.kernels # noqa: F401 + +from executorch.examples.models.qwen3_5_moe.export import load_prequantized_model +from executorch.examples.models.qwen3_5_moe.inference import _move_to_cuda + +PREQUANTIZED_DIR = "/home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/" +PROMPT_TOKENS = [151644, 8948, 198] # A few token IDs to use as prompt (short) +NUM_WARMUP_DECODE = 3 +NUM_PROFILE_DECODE = 16 + +print("Loading model...") +model, config = load_prequantized_model(PREQUANTIZED_DIR, max_seq_len=4096) +_move_to_cuda(model, config) +model.eval() +print("Model loaded and moved to CUDA.") + +# --- Prefill phase (not profiled) --- +print(f"Running prefill with {len(PROMPT_TOKENS)} tokens...") +with torch.no_grad(): + for i, tok_id in enumerate(PROMPT_TOKENS): + tok = torch.tensor([[tok_id]], dtype=torch.long, device="cuda") + pos = torch.tensor([i], dtype=torch.long, device="cuda") + logits = model(tok, pos) + +# Get first decode token +next_token = logits[:, -1, :].argmax(dim=-1) +seq_len = len(PROMPT_TOKENS) + +# --- Warmup decode steps (not profiled) --- +print(f"Running {NUM_WARMUP_DECODE} warmup decode steps...") +with torch.no_grad(): + for i in range(NUM_WARMUP_DECODE): + pos = torch.tensor([seq_len + i], device="cuda") + logits = model(next_token.unsqueeze(0), pos) + next_token = logits[:, -1, :].argmax(dim=-1) + +seq_len += NUM_WARMUP_DECODE + +# --- Profiled decode steps --- +print(f"Profiling {NUM_PROFILE_DECODE} decode steps...") +torch.cuda.synchronize() + +with profile( + activities=[ProfilerActivity.CPU, ProfilerActivity.CUDA], + record_shapes=True, + with_stack=False, +) as prof: + with torch.no_grad(): + for i in range(NUM_PROFILE_DECODE): + pos = torch.tensor([seq_len + i], device="cuda") + logits = model(next_token.unsqueeze(0), pos) + next_token = logits[:, -1, :].argmax(dim=-1) + +torch.cuda.synchronize() + +print("\n" + "=" * 120) +print(f"PROFILE RESULTS ({NUM_PROFILE_DECODE} decode steps, eager mode, batch_size=1)") +print("=" * 120) + +# Print top 30 ops sorted by CUDA time total +print("\n--- Top 30 operators by CUDA time total ---") +print( + prof.key_averages().table( + sort_by="cuda_time_total", row_limit=30 + ) +) + +# Also print sorted by CPU time for comparison +print("\n--- Top 30 operators by CPU time total ---") +print( + prof.key_averages().table( + sort_by="cpu_time_total", row_limit=30 + ) +) + +# Export chrome trace for detailed analysis +trace_path = "/tmp/qwen35_moe_profile.json" +prof.export_chrome_trace(trace_path) +print(f"\nChrome trace exported to {trace_path}") +print("Open in chrome://tracing or https://ui.perfetto.dev/") diff --git a/qwen35_moe_exports/export.log b/qwen35_moe_exports/export.log new file mode 100644 index 00000000000..f004d6c6f12 --- /dev/null +++ b/qwen35_moe_exports/export.log @@ -0,0 +1,160 @@ +Current Python version 3.10 is below the recommended 3.11 version. It is recommended to upgrade to Python 3.11 or higher for the best experience. +Loading prequantized weights from /home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/model.safetensors... +Building model on meta device... +Model: 40 layers, 2048d, 256 experts top-8 +Exporting model (single method, dynamic T, torch.cond dispatch)... +Export successful! +Lowering to ExecuTorch with CUDA... +/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py:406: ExperimentalWarning: This API and all of cuda backend related functionality are experimental. + partitioner=[CudaPartitioner(compile_specs)], +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +Traceback (most recent call last): + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 196, in _run_module_as_main + return _run_code(code, main_globals, None, + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 86, in _run_code + exec(code, run_globals) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 500, in + main() + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 496, in main + export_and_lower(model, config, args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 404, in export_and_lower + et_prog = to_edge_transform_and_lower( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper + return func(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1405, in to_edge_transform_and_lower + edge_manager = edge_manager.to_backend(method_to_partitioner) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper + return func(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1707, in to_backend + new_edge_programs = to_backend(method_to_programs_and_partitioners) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/functools.py", line 889, in wrapper + return dispatch(args[0].__class__)(*args, **kw) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 762, in _ + lower_all_submodules_to_backend( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 591, in lower_all_submodules_to_backend + backend_name_to_subclass[backend_id].preprocess_multimethod( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_details.py", line 145, in preprocess_multimethod + preprocess_result = cls.preprocess(program, compile_spec_for_program) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/backends/aoti/aoti_backend.py", line 179, in preprocess + device_edge_program = device_edge_program.run_decompositions( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/exported_program.py", line 124, in wrapper + return fn(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/exported_program.py", line 1530, in run_decompositions + return _decompose_exported_program( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/exported_program.py", line 1005, in _decompose_exported_program + ) = _decompose_and_get_gm_with_new_signature_constants( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/exported_program.py", line 483, in _decompose_and_get_gm_with_new_signature_constants + aten_export_artifact = _export_to_aten_ir( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/_trace.py", line 1041, in _export_to_aten_ir + gm, graph_signature = transform(_aot_export_joint_with_descriptors)( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/_trace.py", line 970, in _aot_export_joint_with_descriptors + joint_with_descriptors = aot_export_joint_with_descriptors( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 1341, in aot_export_joint_with_descriptors + aot_state = create_aot_state( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 583, in create_aot_state + fw_metadata = run_functionalized_fw_and_collect_metadata( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/collect_metadata_analysis.py", line 222, in inner + flat_f_outs = f(*flat_f_args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/utils.py", line 204, in flat_fn + tree_out = fn(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/graph_capture_wrappers.py", line 1500, in functional_call + out = PropagateUnbackedSymInts(mod).run(*args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 200, in run + self.env[node] = self.run_node(node) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/symbolic_shapes.py", line 8187, in run_node + result = super().run_node(n) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 297, in run_node + return getattr(self, n.op)(n.target, args, kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 380, in call_function + return target(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 54, in __call__ + return super().__call__(pred, true_fn, false_fn, operands) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 533, in __call__ + return self.dispatch(dispatch_key_set.highestPriorityTypeId(), *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 522, in dispatch + return kernel(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 330, in maybe_run_autograd + return self(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 54, in __call__ + return super().__call__(pred, true_fn, false_fn, operands) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 533, in __call__ + return self.dispatch(dispatch_key_set.highestPriorityTypeId(), *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 416, in dispatch + result = handler(mode, *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 193, in functionalize_dispatch_mode_fn + return fn(PythonFunctionalizeAPI(mode), *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 700, in cond_func + _check_alias_and_mutation( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 460, in _check_alias_and_mutation + aliases, inp_mutation = has_potential_input_alias_or_mutation( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 400, in has_potential_input_alias_or_mutation + ) = potential_input_alias_or_mutation(gm, inputs, pre_dispatch) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 350, in potential_input_alias_or_mutation + raise e + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 344, in potential_input_alias_or_mutation + gm = _maybe_fake_tracing(gm, inputs, pre_dispatch) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 326, in _maybe_fake_tracing + gm = make_fx( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2824, in wrapped + return make_fx_tracer.trace(f, *args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2725, in trace + return self._trace_inner(f, *args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2686, in _trace_inner + t = dispatch_trace( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_compile.py", line 54, in inner + return disable_fn(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/eval_frame.py", line 1262, in _fn + return fn(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1533, in dispatch_trace + graph = tracer.trace(root, concrete_args) # type: ignore[arg-type] + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/eval_frame.py", line 1262, in _fn + return fn(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 890, in trace + (self.create_arg(fn(*args)),), + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1603, in wrapped + out = f(*tensors) # type:ignore[call-arg] + File "", line 1, in + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 949, in call_wrapped + return self._wrapped_call(self, *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 461, in __call__ + raise e + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 447, in __call__ + return super(self.cls, obj).__call__(*args, **kwargs) # type: ignore[misc] + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 864, in module_call_wrapper + return self.call_module(mod, forward, args, kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1352, in call_module + return forward(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 857, in forward + return _orig_module_call(mod, *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1779, in _wrapped_call_impl + return self._call_impl(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1790, in _call_impl + return forward_call(*args, **kwargs) + File ".6804", line 53, in forward + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/dialects/edge/_ops.py", line 332, in __call__ + return self._op(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 865, in __call__ + return self._op(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1654, in __torch_function__ + return func(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 865, in __call__ + return self._op(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_subclasses/functional_tensor.py", line 225, in __torch_dispatch__ + raise RuntimeError( +RuntimeError: Attempting to use FunctionalTensor on its own. Instead, please use it with a corresponding FunctionalTensorMode() + +While executing %cond : [num_users=2] = call_function[target=torch.ops.higher_order.cond](args = (%aten_eq_tensor, %submodule_0, %submodule_1, [%aten_sigmoid_default, %aten_mul_tensor_8, %aten_slice_scatter_default_1, %aten_repeat_interleave_self_int_1, %aten_repeat_interleave_self_int, %aten_view_copy_default_5]), kwargs = {}) +Original traceback: + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/functional_export.py", line 221, in forward + res = self._export_root(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 583, in forward + x = layer(x, input_pos) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 561, in forward + x = x + self.attn(self.ln_1(x), input_pos) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 427, in forward + output, state = torch.cond( + +Use tlparse to see full graph. (https://github.com/pytorch/tlparse?tab=readme-ov-file#tlparse-parse-structured-pt2-logs) diff --git a/qwen35_moe_exports/export_cond.log b/qwen35_moe_exports/export_cond.log new file mode 100644 index 00000000000..5ee9fee56e7 --- /dev/null +++ b/qwen35_moe_exports/export_cond.log @@ -0,0 +1,162 @@ +Current Python version 3.10 is below the recommended 3.11 version. It is recommended to upgrade to Python 3.11 or higher for the best experience. +Loading prequantized weights from /home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/model.safetensors... +Building model on meta device... +Model: 40 layers, 2048d, 256 experts top-8 +Exporting model (single method, dynamic T, torch.cond dispatch)... +Export successful! +Lowering to ExecuTorch with CUDA... +/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py:411: ExperimentalWarning: This API and all of cuda backend related functionality are experimental. + partitioner=[CudaPartitioner(compile_specs)], +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +Traceback (most recent call last): + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 196, in _run_module_as_main + return _run_code(code, main_globals, None, + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 86, in _run_code + exec(code, run_globals) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 505, in + main() + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 501, in main + export_and_lower(model, config, args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 409, in export_and_lower + et_prog = to_edge_transform_and_lower( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper + return func(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1405, in to_edge_transform_and_lower + edge_manager = edge_manager.to_backend(method_to_partitioner) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper + return func(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1707, in to_backend + new_edge_programs = to_backend(method_to_programs_and_partitioners) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/functools.py", line 889, in wrapper + return dispatch(args[0].__class__)(*args, **kw) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 762, in _ + lower_all_submodules_to_backend( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 591, in lower_all_submodules_to_backend + backend_name_to_subclass[backend_id].preprocess_multimethod( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_details.py", line 145, in preprocess_multimethod + preprocess_result = cls.preprocess(program, compile_spec_for_program) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/backends/aoti/aoti_backend.py", line 199, in preprocess + paths = torch._inductor.aot_compile( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/__init__.py", line 310, in aot_compile + return compile_fx_aot( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2048, in compile_fx_aot + compiled_artifacts = compile_fx( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2527, in compile_fx + return compile_fx( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2566, in compile_fx + return _maybe_wrap_and_compile_fx_main( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2655, in _maybe_wrap_and_compile_fx_main + return _compile_fx_main( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2783, in _compile_fx_main + gm, graph_signature = aot_export_module( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 1593, in aot_export_module + fx_g, metadata, in_spec, out_spec = _aot_export_function( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 1862, in _aot_export_function + aot_state = create_aot_state( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 583, in create_aot_state + fw_metadata = run_functionalized_fw_and_collect_metadata( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/collect_metadata_analysis.py", line 222, in inner + flat_f_outs = f(*flat_f_args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/utils.py", line 204, in flat_fn + tree_out = fn(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/graph_capture_wrappers.py", line 1500, in functional_call + out = PropagateUnbackedSymInts(mod).run(*args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 200, in run + self.env[node] = self.run_node(node) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/symbolic_shapes.py", line 8187, in run_node + result = super().run_node(n) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 297, in run_node + return getattr(self, n.op)(n.target, args, kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 380, in call_function + return target(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 54, in __call__ + return super().__call__(pred, true_fn, false_fn, operands) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 533, in __call__ + return self.dispatch(dispatch_key_set.highestPriorityTypeId(), *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 522, in dispatch + return kernel(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 330, in maybe_run_autograd + return self(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 54, in __call__ + return super().__call__(pred, true_fn, false_fn, operands) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 533, in __call__ + return self.dispatch(dispatch_key_set.highestPriorityTypeId(), *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 416, in dispatch + result = handler(mode, *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 193, in functionalize_dispatch_mode_fn + return fn(PythonFunctionalizeAPI(mode), *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 700, in cond_func + _check_alias_and_mutation( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 460, in _check_alias_and_mutation + aliases, inp_mutation = has_potential_input_alias_or_mutation( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 400, in has_potential_input_alias_or_mutation + ) = potential_input_alias_or_mutation(gm, inputs, pre_dispatch) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 350, in potential_input_alias_or_mutation + raise e + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 344, in potential_input_alias_or_mutation + gm = _maybe_fake_tracing(gm, inputs, pre_dispatch) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 326, in _maybe_fake_tracing + gm = make_fx( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2824, in wrapped + return make_fx_tracer.trace(f, *args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2725, in trace + return self._trace_inner(f, *args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2686, in _trace_inner + t = dispatch_trace( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_compile.py", line 54, in inner + return disable_fn(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/eval_frame.py", line 1262, in _fn + return fn(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1533, in dispatch_trace + graph = tracer.trace(root, concrete_args) # type: ignore[arg-type] + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/eval_frame.py", line 1262, in _fn + return fn(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 890, in trace + (self.create_arg(fn(*args)),), + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1603, in wrapped + out = f(*tensors) # type:ignore[call-arg] + File "", line 1, in + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 949, in call_wrapped + return self._wrapped_call(self, *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 461, in __call__ + raise e + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 447, in __call__ + return super(self.cls, obj).__call__(*args, **kwargs) # type: ignore[misc] + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 864, in module_call_wrapper + return self.call_module(mod, forward, args, kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1352, in call_module + return forward(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 857, in forward + return _orig_module_call(mod, *args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1779, in _wrapped_call_impl + return self._call_impl(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1790, in _call_impl + return forward_call(*args, **kwargs) + File ".7106", line 53, in forward + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/dialects/edge/_ops.py", line 332, in __call__ + return self._op(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 865, in __call__ + return self._op(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1654, in __torch_function__ + return func(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 865, in __call__ + return self._op(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_subclasses/functional_tensor.py", line 225, in __torch_dispatch__ + raise RuntimeError( +RuntimeError: Attempting to use FunctionalTensor on its own. Instead, please use it with a corresponding FunctionalTensorMode() + +While executing %cond : [num_users=2] = call_function[target=torch.ops.higher_order.cond](args = (%aten_eq_tensor, %submodule_0, %submodule_1, [%aten_sigmoid_default, %aten_mul_tensor_8, %aten_slice_scatter_default_1, %aten_repeat_interleave_self_int_1, %aten_repeat_interleave_self_int, %aten_view_copy_default_5]), kwargs = {}) +Original traceback: + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/functional_export.py", line 221, in forward + res = self._export_root(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 583, in forward + x = layer(x, input_pos) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 561, in forward + x = x + self.attn(self.ln_1(x), input_pos) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 427, in forward + output, state = torch.cond( + +Use tlparse to see full graph. (https://github.com/pytorch/tlparse?tab=readme-ov-file#tlparse-parse-structured-pt2-logs) diff --git a/qwen35_moe_exports/export_cond2.log b/qwen35_moe_exports/export_cond2.log new file mode 100644 index 00000000000..f9699e79bfe --- /dev/null +++ b/qwen35_moe_exports/export_cond2.log @@ -0,0 +1,14975 @@ +Current Python version 3.10 is below the recommended 3.11 version. It is recommended to upgrade to Python 3.11 or higher for the best experience. +Loading prequantized weights from /home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/model.safetensors... +Building model on meta device... +Model: 40 layers, 2048d, 256 experts top-8 +Exporting model (single method, dynamic T, torch.cond dispatch)... +Export successful! +Lowering to ExecuTorch with CUDA... +/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py:462: ExperimentalWarning: This API and all of cuda backend related functionality are experimental. + partitioner=[CudaPartitioner(compile_specs)], +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +Traceback (most recent call last): + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 196, in _run_module_as_main + return _run_code(code, main_globals, None, + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 86, in _run_code + exec(code, run_globals) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 556, in + main() + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 552, in main + export_and_lower(model, config, args) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 460, in export_and_lower + et_prog = to_edge_transform_and_lower( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper + return func(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1405, in to_edge_transform_and_lower + edge_manager = edge_manager.to_backend(method_to_partitioner) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper + return func(*args, **kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1707, in to_backend + new_edge_programs = to_backend(method_to_programs_and_partitioners) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/functools.py", line 889, in wrapper + return dispatch(args[0].__class__)(*args, **kw) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 762, in _ + lower_all_submodules_to_backend( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 591, in lower_all_submodules_to_backend + backend_name_to_subclass[backend_id].preprocess_multimethod( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_details.py", line 145, in preprocess_multimethod + preprocess_result = cls.preprocess(program, compile_spec_for_program) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/backends/aoti/aoti_backend.py", line 199, in preprocess + paths = torch._inductor.aot_compile( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/__init__.py", line 310, in aot_compile + return compile_fx_aot( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2048, in compile_fx_aot + compiled_artifacts = compile_fx( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2527, in compile_fx + return compile_fx( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2566, in compile_fx + return _maybe_wrap_and_compile_fx_main( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2655, in _maybe_wrap_and_compile_fx_main + return _compile_fx_main( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2838, in _compile_fx_main + return inference_compiler(unlifted_gm, example_inputs_) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/schemas.py", line 1394, in __call__ + output_code = self.compiler_fn(gm, example_inputs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2719, in fw_compiler_base + return compile_fx_forward( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2390, in compile_fx_forward + return inner_compile( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/contextlib.py", line 79, in inner + return func(*args, **kwds) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 826, in compile_fx_inner + return wrap_compiler_debug(_compile_fx_inner, compiler_name="inductor")( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/repro/after_aot.py", line 273, in debug_wrapper + inner_compiled_fn = compiler_fn(gm, example_inputs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 1026, in _compile_fx_inner + raise InductorError(e, currentframe()).with_traceback( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 1022, in _compile_fx_inner + mb_compiled_graph = fx_codegen_and_compile( + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 1798, in fx_codegen_and_compile + return scheme.codegen_and_compile(gm, example_inputs, inputs_to_check, graph_kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 1344, in codegen_and_compile + _recursive_post_grad_passes(gm, is_inference=is_inference) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 582, in _recursive_post_grad_passes + _recursive_post_grad_passes(subgraph, is_inference) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 583, in _recursive_post_grad_passes + post_grad_passes(gm, is_inference) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/fx_passes/post_grad.py", line 357, in post_grad_passes + ).apply_graph_pass(decompose_triton_kernel_wrapper_functional) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/passes/graph_transform_observer.py", line 103, in apply_graph_pass + return pass_fn(self.gm.graph) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/fx_passes/post_grad.py", line 1255, in decompose_triton_kernel_wrapper_functional + graph_pass.apply(graph) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/pattern_matcher.py", line 2063, in apply + entry.apply(m, graph, node) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/pattern_matcher.py", line 1132, in apply + self.handler(match, *match.args, **match.kwargs) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/fx_passes/post_grad.py", line 1253, in _ + match.replace_by_example(decomp, flat_args, run_functional_passes=False) + File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/pattern_matcher.py", line 316, in replace_by_example + assert len(graph_with_eager_vals.graph.nodes) == len( +torch._inductor.exc.InductorError: AssertionError: diff --git a/qwen35_moe_exports/export_dispatch.log b/qwen35_moe_exports/export_dispatch.log new file mode 100644 index 00000000000..f4894a055dc --- /dev/null +++ b/qwen35_moe_exports/export_dispatch.log @@ -0,0 +1,29785 @@ +Current Python version 3.10 is below the recommended 3.11 version. It is recommended to upgrade to Python 3.11 or higher for the best experience. +Loading prequantized weights from /home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/model.safetensors... +Building model on meta device... +Model: 40 layers, 2048d, 256 experts top-8 +Exporting model (single method, dynamic T)... +Export successful! +Lowering to ExecuTorch with CUDA... +/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py:408: ExperimentalWarning: This API and all of cuda backend related functionality are experimental. + partitioner=[CudaPartitioner(compile_specs)], +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ +W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') +/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. + return cls.__new__(cls, *args) +/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/tensor.py:83: FutureWarning: guard_size_oblivious will be removed. Consider using explicit unbacked handling potentially utilizing guard_or_false, guard_or_true, or statically_known_true + return guard_size_oblivious(self.stride < other.stride) +Saving to /home/gasoonjia/executorch/qwen35_moe_exports/model.pte... +Saved 4.9 MB +Saved tensor data to /home/gasoonjia/executorch/qwen35_moe_exports// +Done! diff --git a/test_cond_full.py b/test_cond_full.py new file mode 100644 index 00000000000..be14776baae --- /dev/null +++ b/test_cond_full.py @@ -0,0 +1,85 @@ +"""Test: torch.cond through ExecuTorch CUDA pipeline - matching actual model pattern.""" +import torch +import torch.nn as nn +from torch.export import Dim, export + +from executorch.backends.cuda.cuda_backend import CudaBackend +from executorch.backends.cuda.cuda_partitioner import CudaPartitioner +from executorch.exir import EdgeCompileConfig, to_edge_transform_and_lower + + +class M(nn.Module): + def __init__(self): + super().__init__() + self.register_buffer("state", torch.zeros(1, 4, 8, 8)) + + def forward(self, x, input_pos): + B, T, H, K = x.shape + V = K + scale = K**-0.5 + + def _recurrent(x, state): + s = state.float() + x_f = x[:, 0].float() + s = s + torch.einsum("bhk,bhv->bhkv", x_f, x_f) + o = torch.einsum("bhkv,bhk->bhv", s, x_f) * scale + out = o.unsqueeze(1).expand(-1, x.shape[1], -1, -1).to(x.dtype) + return out.contiguous(), s.contiguous() + + def _chunked(x, state): + # Simulates a non-aliasing computation + out = (x * 0.5 + x * 0.5) # non-aliasing + new_state = state + torch.einsum( + "bhk,bhv->bhkv", x[:, -1].float(), x[:, -1].float() + ) + return out.contiguous(), new_state.float().contiguous() + + is_single = input_pos[0] == input_pos[-1] + output, new_state = torch.cond( + is_single, _recurrent, _chunked, (x, self.state[:B]) + ) + + with torch.no_grad(): + self.state[:B].copy_(new_state) + + return output + + +def main(): + m = M().cuda() + x = torch.randn(1, 2, 4, 8, device="cuda") + input_pos = torch.tensor([0, 1], device="cuda") + + seq = Dim("seq", min=1, max=128) + print("Step 1: Exporting...") + prog = export(m, (x, input_pos), dynamic_shapes=({1: seq}, {0: seq}), strict=True) + print("Export OK") + + # Test aot_compile directly (no ExecuTorch) + print("Step 2: Direct aot_compile...") + gm = prog.module() + try: + paths = torch._inductor.aot_compile(gm, (x, input_pos)) + print(f"Direct aot_compile: SUCCESS") + except Exception as e: + print(f"Direct aot_compile: FAILED - {type(e).__name__}: {str(e)[:200]}") + + # Test through ExecuTorch + CudaBackend.get_decomposition_table = classmethod(lambda cls: {}) + compile_specs = [CudaBackend.generate_method_name_compile_spec("forward")] + print("Step 3: ExecuTorch pipeline...") + try: + et_prog = to_edge_transform_and_lower( + prog, + partitioner=[CudaPartitioner(compile_specs)], + compile_config=EdgeCompileConfig( + _check_ir_validity=False, _skip_dim_order=True + ), + ) + print("ExecuTorch: SUCCESS") + except Exception as e: + print(f"ExecuTorch: FAILED - {type(e).__name__}: {str(e)[:200]}") + + +if __name__ == "__main__": + main() diff --git a/test_dispatch.py b/test_dispatch.py new file mode 100644 index 00000000000..545ec5deebd --- /dev/null +++ b/test_dispatch.py @@ -0,0 +1,54 @@ +"""Test: triton_op with runtime dispatch + aot_compile.""" +import torch +import triton +import triton.language as tl +from torch.library import triton_op, wrap_triton + + +@triton.jit +def _mul_kernel(x_ptr, out_ptr, n: tl.constexpr): + idx = tl.arange(0, n) + x = tl.load(x_ptr + idx) + tl.store(out_ptr + idx, x * 2) + + +@triton.jit +def _add_kernel(x_ptr, out_ptr, n: tl.constexpr): + idx = tl.arange(0, n) + x = tl.load(x_ptr + idx) + tl.store(out_ptr + idx, x + 1) + + +@triton_op("test::dispatch_triton", mutates_args={}) +def dispatch_triton(x: torch.Tensor) -> torch.Tensor: + out = torch.empty_like(x) + n = x.numel() + if x.shape[0] == 1: + wrap_triton(_mul_kernel)[(1,)](x, out, n) + else: + wrap_triton(_add_kernel)[(1,)](x, out, n) + return out + + +if __name__ == "__main__": + x1 = torch.randn(1, 4, device="cuda") + x2 = torch.randn(2, 4, device="cuda") + print("T=1:", dispatch_triton(x1)) + print("T=2:", dispatch_triton(x2)) + + from torch.export import Dim, export + + class M(torch.nn.Module): + def forward(self, x): + return torch.ops.test.dispatch_triton(x) + + m = M().cuda() + seq = Dim("seq", min=1, max=128) + prog = export(m, (x2,), dynamic_shapes=({0: seq},)) + gm = prog.module() + print("aot_compile...") + try: + paths = torch._inductor.aot_compile(gm, (x2,)) + print(f"SUCCESS: {paths}") + except Exception as e: + print(f"FAILED: {type(e).__name__}: {str(e)[:300]}") diff --git a/test_recurrent.py b/test_recurrent.py new file mode 100644 index 00000000000..f8d48cf5589 --- /dev/null +++ b/test_recurrent.py @@ -0,0 +1,109 @@ +"""Quick correctness test: recurrent Triton kernel vs einsum reference.""" +import sys +sys.path.insert(0, "/home/gasoonjia/executorch") +import torch + +# Import the kernel from source (not installed) +from backends.cuda.triton.kernels.chunk_gated_delta_rule import ( + _launch_recurrent, + _launch_chunked, +) + + +def reference_recurrent(q, k, v, g, beta, state, scale): + """Reference einsum implementation.""" + state_f = state.float() + q_f = q[:, 0].float() + k_f = k[:, 0].float() + v_f = v[:, 0].float() + g_f = g[:, 0] + beta_f = beta[:, 0].float() + + state_f = state_f * g_f.exp().unsqueeze(-1).unsqueeze(-1) + Sk = torch.einsum("bhkv,bhk->bhv", state_f, k_f) + delta = v_f - Sk + state_f = state_f + beta_f.unsqueeze(-1).unsqueeze(-1) * torch.einsum( + "bhk,bhv->bhkv", k_f, delta + ) + o = torch.einsum("bhkv,bhk->bhv", state_f, q_f) * scale + return o.unsqueeze(1).to(v.dtype), state_f + + +def test_recurrent_kernel(): + torch.manual_seed(42) + B, T, H, K, V = 1, 1, 16, 64, 128 + scale = K**-0.5 + + q = torch.randn(B, T, H, K, device="cuda", dtype=torch.bfloat16) + k = torch.randn(B, T, H, K, device="cuda", dtype=torch.bfloat16) + v = torch.randn(B, T, H, V, device="cuda", dtype=torch.bfloat16) + g = torch.randn(B, T, H, device="cuda", dtype=torch.float32) * 0.1 + beta = torch.rand(B, T, H, device="cuda", dtype=torch.float32) + state = torch.randn(B, H, K, V, device="cuda", dtype=torch.float32) * 0.01 + + # Reference + ref_o, ref_state = reference_recurrent(q, k, v, g, beta, state, scale) + + # Triton kernel + tri_o, tri_state = _launch_recurrent(q, k, v, g, beta, state, scale) + + # Compare + o_err = (ref_o.float() - tri_o.float()).abs().max().item() + s_err = (ref_state - tri_state).abs().max().item() + o_rel = o_err / ref_o.float().abs().max().item() + s_rel = s_err / ref_state.abs().max().item() + + print(f"Output max abs err: {o_err:.6e}, rel: {o_rel:.6e}") + print(f"State max abs err: {s_err:.6e}, rel: {s_rel:.6e}") + + if o_rel < 1e-3 and s_rel < 1e-3: + print("PASS") + else: + print("FAIL — tolerance exceeded") + return False + return True + + +def test_dispatch(): + """Test that T=1 goes through recurrent and T=2 goes through chunked.""" + torch.manual_seed(42) + B, H, K, V = 1, 16, 64, 128 + + # T=1 + q1 = torch.randn(B, 1, H, K, device="cuda", dtype=torch.bfloat16) + k1 = torch.randn(B, 1, H, K, device="cuda", dtype=torch.bfloat16) + v1 = torch.randn(B, 1, H, V, device="cuda", dtype=torch.bfloat16) + g1 = torch.randn(B, 1, H, device="cuda", dtype=torch.float32) * 0.1 + beta1 = torch.rand(B, 1, H, device="cuda", dtype=torch.float32) + state = torch.randn(B, H, K, V, device="cuda", dtype=torch.float32) * 0.01 + + from backends.cuda.triton.kernels.chunk_gated_delta_rule import chunk_gated_delta_rule + + o1, s1 = chunk_gated_delta_rule(q1, k1, v1, g1, beta1, state) + print(f"T=1 dispatch: output shape {o1.shape}, state shape {s1.shape}") + assert o1.shape == (B, 1, H, V), f"Bad output shape: {o1.shape}" + assert s1.shape == (B, H, K, V), f"Bad state shape: {s1.shape}" + + # T=4 + q4 = torch.randn(B, 4, H, K, device="cuda", dtype=torch.bfloat16) + k4 = torch.randn(B, 4, H, K, device="cuda", dtype=torch.bfloat16) + v4 = torch.randn(B, 4, H, V, device="cuda", dtype=torch.bfloat16) + g4 = torch.randn(B, 4, H, device="cuda", dtype=torch.float32) * 0.1 + beta4 = torch.rand(B, 4, H, device="cuda", dtype=torch.float32) + + o4, s4 = chunk_gated_delta_rule(q4, k4, v4, g4, beta4, state) + print(f"T=4 dispatch: output shape {o4.shape}, state shape {s4.shape}") + assert o4.shape == (B, 4, H, V), f"Bad output shape: {o4.shape}" + assert s4.shape == (B, H, K, V), f"Bad state shape: {s4.shape}" + + print("Dispatch test PASS") + return True + + +if __name__ == "__main__": + print("=== Recurrent kernel correctness ===") + ok1 = test_recurrent_kernel() + print() + print("=== Dispatch test ===") + ok2 = test_dispatch() + sys.exit(0 if ok1 and ok2 else 1) From 8d35c6574fa14059a2a3405027354d0bc6768ce8 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Thu, 2 Apr 2026 21:24:50 -0700 Subject: [PATCH 06/12] lint fix - 2 --- profile_qwen35.py | 168 - profile_qwen35_moe.py | 91 - qwen35_moe_exports/export.log | 160 - qwen35_moe_exports/export_cond.log | 162 - qwen35_moe_exports/export_cond2.log | 14975 ------------ qwen35_moe_exports/export_dispatch.log | 29785 ----------------------- test_cond_full.py | 85 - test_dispatch.py | 54 - test_recurrent.py | 109 - 9 files changed, 45589 deletions(-) delete mode 100644 profile_qwen35.py delete mode 100644 profile_qwen35_moe.py delete mode 100644 qwen35_moe_exports/export.log delete mode 100644 qwen35_moe_exports/export_cond.log delete mode 100644 qwen35_moe_exports/export_cond2.log delete mode 100644 qwen35_moe_exports/export_dispatch.log delete mode 100644 test_cond_full.py delete mode 100644 test_dispatch.py delete mode 100644 test_recurrent.py diff --git a/profile_qwen35.py b/profile_qwen35.py deleted file mode 100644 index 9854f42f829..00000000000 --- a/profile_qwen35.py +++ /dev/null @@ -1,168 +0,0 @@ -"""Profile Qwen3.5 MoE inference with torch.profiler for operator-level breakdown.""" - -import argparse -import os -import time - -import torch - -from executorch.examples.models.qwen3_5_moe.inference import _move_to_cuda, _sample -from executorch.examples.models.qwen3_5_moe.export import load_prequantized_model - - -def generate_with_profile( - model, tokenizer, prompt, max_new_tokens=16, temperature=0.0, eos_token_ids=None, - warmup_tokens=0, -): - """Generate text and profile the decode phase.""" - if eos_token_ids is None: - eos_token_ids = set() - - input_ids = tokenizer.encode(prompt).ids - - # === Prefill (no profiling, just get through it) === - print(f"Prefilling {len(input_ids)} tokens...") - with torch.no_grad(): - for i, tok_id in enumerate(input_ids): - tok = torch.tensor([[tok_id]], dtype=torch.long, device="cuda") - pos = torch.tensor([i], dtype=torch.long, device="cuda") - logits = model(tok, pos) - - # Sample first token - next_token = _sample(logits[:, -1, :], temperature) - generated = [next_token.item()] - seq_len = len(input_ids) - - # === Warmup decode tokens (no profiling) === - print(f"Warming up {warmup_tokens} decode tokens...") - with torch.no_grad(): - for i in range(warmup_tokens): - pos = torch.tensor([seq_len + i], device="cuda") - logits = model(next_token.unsqueeze(0), pos) - next_token = _sample(logits[:, -1, :], temperature) - tok_id = next_token.item() - generated.append(tok_id) - if tok_id in eos_token_ids: - print(" (hit EOS during warmup)") - return tokenizer.decode(generated), None - - torch.cuda.synchronize() - - # === Profiled decode tokens === - print(f"Profiling {max_new_tokens} decode tokens...") - profile_start_idx = warmup_tokens - - with torch.no_grad(): - with torch.profiler.profile( - activities=[ - torch.profiler.ProfilerActivity.CPU, - torch.profiler.ProfilerActivity.CUDA, - ], - record_shapes=True, - with_stack=False, - ) as prof: - for i in range(max_new_tokens): - idx = profile_start_idx + i - pos = torch.tensor([seq_len + idx], device="cuda") - logits = model(next_token.unsqueeze(0), pos) - next_token = _sample(logits[:, -1, :], temperature) - tok_id = next_token.item() - generated.append(tok_id) - if tok_id in eos_token_ids: - print(" (hit EOS during profiling)") - break - - torch.cuda.synchronize() - return tokenizer.decode(generated), prof - - -def main(): - parser = argparse.ArgumentParser(description="Profile Qwen3.5 MoE inference") - parser.add_argument( - "--prequantized", - required=True, - help="Path to prequantized bundle directory", - ) - parser.add_argument("--prompt", default="What is the capital of France?") - parser.add_argument("--max-new-tokens", type=int, default=16, - help="Number of decode tokens to profile") - parser.add_argument("--warmup-tokens", type=int, default=4, - help="Number of decode tokens to run before profiling") - parser.add_argument("--temperature", type=float, default=0.0) - parser.add_argument("--max-seq-len", type=int, default=32768) - parser.add_argument("--no-compile", action="store_true", - help="Disable torch.compile") - parser.add_argument("--trace-output", type=str, default=None, - help="Path to save Chrome trace JSON (optional)") - parser.add_argument("--row-limit", type=int, default=50, - help="Number of rows in profiler table") - args = parser.parse_args() - - # Register Triton kernels - import executorch.backends.cuda.triton.kernels # noqa: F401 - - # Load model - print(f"Loading model from {args.prequantized}...") - model, config = load_prequantized_model( - args.prequantized, max_seq_len=args.max_seq_len - ) - _move_to_cuda(model, config) - model.eval() - - # Compile - if not args.no_compile: - print("Compiling model with torch.compile...") - model = torch.compile(model, mode="default") - - # Load tokenizer - tokenizer_path = os.path.join(args.prequantized, "tokenizer.json") - from tokenizers import Tokenizer - tokenizer = Tokenizer.from_file(tokenizer_path) - - # EOS tokens - eos_token_ids = set() - for tok in ["<|im_end|>", "<|endoftext|>"]: - ids = tokenizer.encode(tok).ids - if len(ids) == 1: - eos_token_ids.add(ids[0]) - - # Run profiled generation - t0 = time.perf_counter() - output, prof = generate_with_profile( - model, tokenizer, args.prompt, - max_new_tokens=args.max_new_tokens, - warmup_tokens=args.warmup_tokens, - temperature=args.temperature, - eos_token_ids=eos_token_ids, - ) - elapsed = time.perf_counter() - t0 - - print(f"\n{'='*80}") - print(f"Generated text: {output}") - print(f"Total time: {elapsed:.2f}s") - print(f"{'='*80}\n") - - if prof is not None: - # Print CUDA time breakdown - print("=" * 80) - print("OPERATOR-LEVEL BREAKDOWN (sorted by CUDA time total)") - print("=" * 80) - print(prof.key_averages().table( - sort_by="cuda_time_total", row_limit=args.row_limit - )) - - print("\n" + "=" * 80) - print("OPERATOR-LEVEL BREAKDOWN (sorted by CUDA time, grouped by input shape)") - print("=" * 80) - print(prof.key_averages(group_by_input_shape=True).table( - sort_by="cuda_time_total", row_limit=args.row_limit - )) - - # Save Chrome trace if requested - if args.trace_output: - prof.export_chrome_trace(args.trace_output) - print(f"\nChrome trace saved to: {args.trace_output}") - - -if __name__ == "__main__": - main() diff --git a/profile_qwen35_moe.py b/profile_qwen35_moe.py deleted file mode 100644 index 4d4d3550fc2..00000000000 --- a/profile_qwen35_moe.py +++ /dev/null @@ -1,91 +0,0 @@ -"""Profile Qwen3.5 MoE decode-phase inference with torch.profiler. - -Loads the prequantized model in eager mode (no torch.compile), -runs prefill + warmup decode steps, then profiles ~16 decode steps -and prints the top 30 CUDA operators by total CUDA time. -""" - -import torch -from torch.profiler import profile, ProfilerActivity - -# Register Triton kernels (fused MoE, GatedDeltaNet) -import executorch.backends.cuda.triton.kernels # noqa: F401 - -from executorch.examples.models.qwen3_5_moe.export import load_prequantized_model -from executorch.examples.models.qwen3_5_moe.inference import _move_to_cuda - -PREQUANTIZED_DIR = "/home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/" -PROMPT_TOKENS = [151644, 8948, 198] # A few token IDs to use as prompt (short) -NUM_WARMUP_DECODE = 3 -NUM_PROFILE_DECODE = 16 - -print("Loading model...") -model, config = load_prequantized_model(PREQUANTIZED_DIR, max_seq_len=4096) -_move_to_cuda(model, config) -model.eval() -print("Model loaded and moved to CUDA.") - -# --- Prefill phase (not profiled) --- -print(f"Running prefill with {len(PROMPT_TOKENS)} tokens...") -with torch.no_grad(): - for i, tok_id in enumerate(PROMPT_TOKENS): - tok = torch.tensor([[tok_id]], dtype=torch.long, device="cuda") - pos = torch.tensor([i], dtype=torch.long, device="cuda") - logits = model(tok, pos) - -# Get first decode token -next_token = logits[:, -1, :].argmax(dim=-1) -seq_len = len(PROMPT_TOKENS) - -# --- Warmup decode steps (not profiled) --- -print(f"Running {NUM_WARMUP_DECODE} warmup decode steps...") -with torch.no_grad(): - for i in range(NUM_WARMUP_DECODE): - pos = torch.tensor([seq_len + i], device="cuda") - logits = model(next_token.unsqueeze(0), pos) - next_token = logits[:, -1, :].argmax(dim=-1) - -seq_len += NUM_WARMUP_DECODE - -# --- Profiled decode steps --- -print(f"Profiling {NUM_PROFILE_DECODE} decode steps...") -torch.cuda.synchronize() - -with profile( - activities=[ProfilerActivity.CPU, ProfilerActivity.CUDA], - record_shapes=True, - with_stack=False, -) as prof: - with torch.no_grad(): - for i in range(NUM_PROFILE_DECODE): - pos = torch.tensor([seq_len + i], device="cuda") - logits = model(next_token.unsqueeze(0), pos) - next_token = logits[:, -1, :].argmax(dim=-1) - -torch.cuda.synchronize() - -print("\n" + "=" * 120) -print(f"PROFILE RESULTS ({NUM_PROFILE_DECODE} decode steps, eager mode, batch_size=1)") -print("=" * 120) - -# Print top 30 ops sorted by CUDA time total -print("\n--- Top 30 operators by CUDA time total ---") -print( - prof.key_averages().table( - sort_by="cuda_time_total", row_limit=30 - ) -) - -# Also print sorted by CPU time for comparison -print("\n--- Top 30 operators by CPU time total ---") -print( - prof.key_averages().table( - sort_by="cpu_time_total", row_limit=30 - ) -) - -# Export chrome trace for detailed analysis -trace_path = "/tmp/qwen35_moe_profile.json" -prof.export_chrome_trace(trace_path) -print(f"\nChrome trace exported to {trace_path}") -print("Open in chrome://tracing or https://ui.perfetto.dev/") diff --git a/qwen35_moe_exports/export.log b/qwen35_moe_exports/export.log deleted file mode 100644 index f004d6c6f12..00000000000 --- a/qwen35_moe_exports/export.log +++ /dev/null @@ -1,160 +0,0 @@ -Current Python version 3.10 is below the recommended 3.11 version. It is recommended to upgrade to Python 3.11 or higher for the best experience. -Loading prequantized weights from /home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/model.safetensors... -Building model on meta device... -Model: 40 layers, 2048d, 256 experts top-8 -Exporting model (single method, dynamic T, torch.cond dispatch)... -Export successful! -Lowering to ExecuTorch with CUDA... -/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py:406: ExperimentalWarning: This API and all of cuda backend related functionality are experimental. - partitioner=[CudaPartitioner(compile_specs)], -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -Traceback (most recent call last): - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 196, in _run_module_as_main - return _run_code(code, main_globals, None, - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 86, in _run_code - exec(code, run_globals) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 500, in - main() - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 496, in main - export_and_lower(model, config, args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 404, in export_and_lower - et_prog = to_edge_transform_and_lower( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper - return func(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1405, in to_edge_transform_and_lower - edge_manager = edge_manager.to_backend(method_to_partitioner) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper - return func(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1707, in to_backend - new_edge_programs = to_backend(method_to_programs_and_partitioners) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/functools.py", line 889, in wrapper - return dispatch(args[0].__class__)(*args, **kw) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 762, in _ - lower_all_submodules_to_backend( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 591, in lower_all_submodules_to_backend - backend_name_to_subclass[backend_id].preprocess_multimethod( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_details.py", line 145, in preprocess_multimethod - preprocess_result = cls.preprocess(program, compile_spec_for_program) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/backends/aoti/aoti_backend.py", line 179, in preprocess - device_edge_program = device_edge_program.run_decompositions( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/exported_program.py", line 124, in wrapper - return fn(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/exported_program.py", line 1530, in run_decompositions - return _decompose_exported_program( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/exported_program.py", line 1005, in _decompose_exported_program - ) = _decompose_and_get_gm_with_new_signature_constants( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/exported_program.py", line 483, in _decompose_and_get_gm_with_new_signature_constants - aten_export_artifact = _export_to_aten_ir( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/_trace.py", line 1041, in _export_to_aten_ir - gm, graph_signature = transform(_aot_export_joint_with_descriptors)( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/export/_trace.py", line 970, in _aot_export_joint_with_descriptors - joint_with_descriptors = aot_export_joint_with_descriptors( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 1341, in aot_export_joint_with_descriptors - aot_state = create_aot_state( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 583, in create_aot_state - fw_metadata = run_functionalized_fw_and_collect_metadata( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/collect_metadata_analysis.py", line 222, in inner - flat_f_outs = f(*flat_f_args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/utils.py", line 204, in flat_fn - tree_out = fn(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/graph_capture_wrappers.py", line 1500, in functional_call - out = PropagateUnbackedSymInts(mod).run(*args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 200, in run - self.env[node] = self.run_node(node) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/symbolic_shapes.py", line 8187, in run_node - result = super().run_node(n) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 297, in run_node - return getattr(self, n.op)(n.target, args, kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 380, in call_function - return target(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 54, in __call__ - return super().__call__(pred, true_fn, false_fn, operands) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 533, in __call__ - return self.dispatch(dispatch_key_set.highestPriorityTypeId(), *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 522, in dispatch - return kernel(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 330, in maybe_run_autograd - return self(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 54, in __call__ - return super().__call__(pred, true_fn, false_fn, operands) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 533, in __call__ - return self.dispatch(dispatch_key_set.highestPriorityTypeId(), *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 416, in dispatch - result = handler(mode, *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 193, in functionalize_dispatch_mode_fn - return fn(PythonFunctionalizeAPI(mode), *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 700, in cond_func - _check_alias_and_mutation( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 460, in _check_alias_and_mutation - aliases, inp_mutation = has_potential_input_alias_or_mutation( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 400, in has_potential_input_alias_or_mutation - ) = potential_input_alias_or_mutation(gm, inputs, pre_dispatch) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 350, in potential_input_alias_or_mutation - raise e - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 344, in potential_input_alias_or_mutation - gm = _maybe_fake_tracing(gm, inputs, pre_dispatch) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 326, in _maybe_fake_tracing - gm = make_fx( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2824, in wrapped - return make_fx_tracer.trace(f, *args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2725, in trace - return self._trace_inner(f, *args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2686, in _trace_inner - t = dispatch_trace( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_compile.py", line 54, in inner - return disable_fn(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/eval_frame.py", line 1262, in _fn - return fn(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1533, in dispatch_trace - graph = tracer.trace(root, concrete_args) # type: ignore[arg-type] - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/eval_frame.py", line 1262, in _fn - return fn(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 890, in trace - (self.create_arg(fn(*args)),), - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1603, in wrapped - out = f(*tensors) # type:ignore[call-arg] - File "", line 1, in - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 949, in call_wrapped - return self._wrapped_call(self, *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 461, in __call__ - raise e - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 447, in __call__ - return super(self.cls, obj).__call__(*args, **kwargs) # type: ignore[misc] - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 864, in module_call_wrapper - return self.call_module(mod, forward, args, kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1352, in call_module - return forward(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 857, in forward - return _orig_module_call(mod, *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1779, in _wrapped_call_impl - return self._call_impl(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1790, in _call_impl - return forward_call(*args, **kwargs) - File ".6804", line 53, in forward - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/dialects/edge/_ops.py", line 332, in __call__ - return self._op(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 865, in __call__ - return self._op(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1654, in __torch_function__ - return func(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 865, in __call__ - return self._op(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_subclasses/functional_tensor.py", line 225, in __torch_dispatch__ - raise RuntimeError( -RuntimeError: Attempting to use FunctionalTensor on its own. Instead, please use it with a corresponding FunctionalTensorMode() - -While executing %cond : [num_users=2] = call_function[target=torch.ops.higher_order.cond](args = (%aten_eq_tensor, %submodule_0, %submodule_1, [%aten_sigmoid_default, %aten_mul_tensor_8, %aten_slice_scatter_default_1, %aten_repeat_interleave_self_int_1, %aten_repeat_interleave_self_int, %aten_view_copy_default_5]), kwargs = {}) -Original traceback: - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/functional_export.py", line 221, in forward - res = self._export_root(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 583, in forward - x = layer(x, input_pos) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 561, in forward - x = x + self.attn(self.ln_1(x), input_pos) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 427, in forward - output, state = torch.cond( - -Use tlparse to see full graph. (https://github.com/pytorch/tlparse?tab=readme-ov-file#tlparse-parse-structured-pt2-logs) diff --git a/qwen35_moe_exports/export_cond.log b/qwen35_moe_exports/export_cond.log deleted file mode 100644 index 5ee9fee56e7..00000000000 --- a/qwen35_moe_exports/export_cond.log +++ /dev/null @@ -1,162 +0,0 @@ -Current Python version 3.10 is below the recommended 3.11 version. It is recommended to upgrade to Python 3.11 or higher for the best experience. -Loading prequantized weights from /home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/model.safetensors... -Building model on meta device... -Model: 40 layers, 2048d, 256 experts top-8 -Exporting model (single method, dynamic T, torch.cond dispatch)... -Export successful! -Lowering to ExecuTorch with CUDA... -/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py:411: ExperimentalWarning: This API and all of cuda backend related functionality are experimental. - partitioner=[CudaPartitioner(compile_specs)], -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -Traceback (most recent call last): - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 196, in _run_module_as_main - return _run_code(code, main_globals, None, - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 86, in _run_code - exec(code, run_globals) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 505, in - main() - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 501, in main - export_and_lower(model, config, args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 409, in export_and_lower - et_prog = to_edge_transform_and_lower( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper - return func(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1405, in to_edge_transform_and_lower - edge_manager = edge_manager.to_backend(method_to_partitioner) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper - return func(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1707, in to_backend - new_edge_programs = to_backend(method_to_programs_and_partitioners) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/functools.py", line 889, in wrapper - return dispatch(args[0].__class__)(*args, **kw) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 762, in _ - lower_all_submodules_to_backend( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 591, in lower_all_submodules_to_backend - backend_name_to_subclass[backend_id].preprocess_multimethod( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_details.py", line 145, in preprocess_multimethod - preprocess_result = cls.preprocess(program, compile_spec_for_program) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/backends/aoti/aoti_backend.py", line 199, in preprocess - paths = torch._inductor.aot_compile( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/__init__.py", line 310, in aot_compile - return compile_fx_aot( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2048, in compile_fx_aot - compiled_artifacts = compile_fx( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2527, in compile_fx - return compile_fx( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2566, in compile_fx - return _maybe_wrap_and_compile_fx_main( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2655, in _maybe_wrap_and_compile_fx_main - return _compile_fx_main( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2783, in _compile_fx_main - gm, graph_signature = aot_export_module( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 1593, in aot_export_module - fx_g, metadata, in_spec, out_spec = _aot_export_function( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 1862, in _aot_export_function - aot_state = create_aot_state( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/aot_autograd.py", line 583, in create_aot_state - fw_metadata = run_functionalized_fw_and_collect_metadata( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/collect_metadata_analysis.py", line 222, in inner - flat_f_outs = f(*flat_f_args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/utils.py", line 204, in flat_fn - tree_out = fn(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/graph_capture_wrappers.py", line 1500, in functional_call - out = PropagateUnbackedSymInts(mod).run(*args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 200, in run - self.env[node] = self.run_node(node) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/symbolic_shapes.py", line 8187, in run_node - result = super().run_node(n) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 297, in run_node - return getattr(self, n.op)(n.target, args, kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/interpreter.py", line 380, in call_function - return target(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 54, in __call__ - return super().__call__(pred, true_fn, false_fn, operands) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 533, in __call__ - return self.dispatch(dispatch_key_set.highestPriorityTypeId(), *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 522, in dispatch - return kernel(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 330, in maybe_run_autograd - return self(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 54, in __call__ - return super().__call__(pred, true_fn, false_fn, operands) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 533, in __call__ - return self.dispatch(dispatch_key_set.highestPriorityTypeId(), *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 416, in dispatch - result = handler(mode, *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 193, in functionalize_dispatch_mode_fn - return fn(PythonFunctionalizeAPI(mode), *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/cond.py", line 700, in cond_func - _check_alias_and_mutation( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 460, in _check_alias_and_mutation - aliases, inp_mutation = has_potential_input_alias_or_mutation( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 400, in has_potential_input_alias_or_mutation - ) = potential_input_alias_or_mutation(gm, inputs, pre_dispatch) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 350, in potential_input_alias_or_mutation - raise e - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 344, in potential_input_alias_or_mutation - gm = _maybe_fake_tracing(gm, inputs, pre_dispatch) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/utils.py", line 326, in _maybe_fake_tracing - gm = make_fx( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2824, in wrapped - return make_fx_tracer.trace(f, *args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2725, in trace - return self._trace_inner(f, *args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 2686, in _trace_inner - t = dispatch_trace( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_compile.py", line 54, in inner - return disable_fn(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/eval_frame.py", line 1262, in _fn - return fn(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1533, in dispatch_trace - graph = tracer.trace(root, concrete_args) # type: ignore[arg-type] - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/eval_frame.py", line 1262, in _fn - return fn(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 890, in trace - (self.create_arg(fn(*args)),), - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1603, in wrapped - out = f(*tensors) # type:ignore[call-arg] - File "", line 1, in - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 949, in call_wrapped - return self._wrapped_call(self, *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 461, in __call__ - raise e - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/graph_module.py", line 447, in __call__ - return super(self.cls, obj).__call__(*args, **kwargs) # type: ignore[misc] - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 864, in module_call_wrapper - return self.call_module(mod, forward, args, kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1352, in call_module - return forward(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py", line 857, in forward - return _orig_module_call(mod, *args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1779, in _wrapped_call_impl - return self._call_impl(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1790, in _call_impl - return forward_call(*args, **kwargs) - File ".7106", line 53, in forward - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/dialects/edge/_ops.py", line 332, in __call__ - return self._op(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 865, in __call__ - return self._op(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/experimental/proxy_tensor.py", line 1654, in __torch_function__ - return func(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_ops.py", line 865, in __call__ - return self._op(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_subclasses/functional_tensor.py", line 225, in __torch_dispatch__ - raise RuntimeError( -RuntimeError: Attempting to use FunctionalTensor on its own. Instead, please use it with a corresponding FunctionalTensorMode() - -While executing %cond : [num_users=2] = call_function[target=torch.ops.higher_order.cond](args = (%aten_eq_tensor, %submodule_0, %submodule_1, [%aten_sigmoid_default, %aten_mul_tensor_8, %aten_slice_scatter_default_1, %aten_repeat_interleave_self_int_1, %aten_repeat_interleave_self_int, %aten_view_copy_default_5]), kwargs = {}) -Original traceback: - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/functional_export.py", line 221, in forward - res = self._export_root(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 583, in forward - x = layer(x, input_pos) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 561, in forward - x = x + self.attn(self.ln_1(x), input_pos) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/model.py", line 427, in forward - output, state = torch.cond( - -Use tlparse to see full graph. (https://github.com/pytorch/tlparse?tab=readme-ov-file#tlparse-parse-structured-pt2-logs) diff --git a/qwen35_moe_exports/export_cond2.log b/qwen35_moe_exports/export_cond2.log deleted file mode 100644 index f9699e79bfe..00000000000 --- a/qwen35_moe_exports/export_cond2.log +++ /dev/null @@ -1,14975 +0,0 @@ -Current Python version 3.10 is below the recommended 3.11 version. It is recommended to upgrade to Python 3.11 or higher for the best experience. -Loading prequantized weights from /home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/model.safetensors... -Building model on meta device... -Model: 40 layers, 2048d, 256 experts top-8 -Exporting model (single method, dynamic T, torch.cond dispatch)... -Export successful! -Lowering to ExecuTorch with CUDA... -/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py:462: ExperimentalWarning: This API and all of cuda backend related functionality are experimental. - partitioner=[CudaPartitioner(compile_specs)], -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:26.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:26.568000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:26.617000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:26.644000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:26.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:26.756000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.139000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.590000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.608000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.641000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.663000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.712000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.750000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:27.957000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:28.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:28.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:28.374000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:28.395000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:28.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:28.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:28.596000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:28.649000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:28.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.242000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.792000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.817000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.884000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:29.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.042000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.094000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.127000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.478000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.494000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.523000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.544000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.594000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.744000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.794000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:30.826000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.161000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.177000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.223000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.426000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.514000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.839000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.890000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:31.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.260000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.276000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.327000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.372000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.522000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.573000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:32.971000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.003000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.023000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.221000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.273000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.307000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.719000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.761000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.800000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.926000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:33.976000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.241000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.818000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.836000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:34.915000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.077000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.113000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.451000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.541000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.688000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.738000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:35.771000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.136000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.186000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.385000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.438000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.705000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.804000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:36.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.250000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.312000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.360000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.398000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.520000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.572000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.605000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.951000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:37.994000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.012000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.059000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.263000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.297000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.628000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.643000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.692000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.772000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:38.966000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.201000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.290000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.340000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.713000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.728000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.858000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:39.977000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.424000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.517000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.552000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.671000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.722000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:40.754000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.106000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.122000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.149000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.168000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.218000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.378000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.430000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.462000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.693000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.779000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:41.862000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.211000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.226000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.257000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.277000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.323000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.358000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.476000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.562000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.944000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.959000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:42.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.092000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.217000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.269000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.652000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.701000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.721000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.801000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:43.973000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.006000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.240000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.762000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.783000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.829000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:44.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.029000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.080000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.459000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.475000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.509000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.529000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.574000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.609000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.723000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.775000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:45.807000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.153000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.169000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.200000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.220000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.264000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.419000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.470000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.503000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.731000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.877000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:46.910000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.274000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.301000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.320000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.405000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.527000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.614000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.963000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:47.980000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.007000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.026000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.074000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.111000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.229000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.285000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.319000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.662000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.711000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.730000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.776000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.934000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:48.985000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.018000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.349000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.400000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.432000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.778000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.793000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.823000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.841000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.883000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:49.922000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.045000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.097000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.130000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.473000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.489000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.581000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.616000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.736000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.787000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:50.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.163000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.178000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.204000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.222000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.306000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.429000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.482000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.515000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.763000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.852000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:51.939000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:56.788000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:56.808000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:56.849000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:56.880000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:56.950000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:56.997000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:08:57.461000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:00.820000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:00.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:01.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:01.655000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:01.702000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:01.747000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:01.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:01.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:02.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:02.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:02.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:03.230000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:03.252000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:03.299000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:03.334000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:03.397000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:03.448000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:03.882000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:03.999000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:04.048000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:04.676000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:04.895000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:05.009000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:05.055000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:05.757000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:05.777000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:05.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:05.842000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:05.894000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:05.941000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:06.350000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:06.460000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:06.507000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:07.234000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:07.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:07.293000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:07.324000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:07.381000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:07.428000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:07.838000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:07.956000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:08.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:08.732000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:08.752000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:08.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:08.821000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:08.879000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:08.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:09.328000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:09.445000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:09.492000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:10.002000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:10.208000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:10.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:10.369000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:11.170000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:11.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:11.232000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:11.266000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:11.325000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:11.371000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:11.781000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:11.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:11.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:12.659000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:12.683000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:12.717000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:12.748000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:12.806000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:12.850000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:13.259000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:13.370000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:13.415000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:14.144000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:14.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:14.205000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:14.235000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:14.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:14.342000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:14.760000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:14.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:14.920000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:15.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:15.637000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:15.753000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:15.803000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:16.716000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:16.739000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:18.859000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:18.891000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:18.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:19.001000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:19.434000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:19.548000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:19.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:20.345000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:20.366000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:20.406000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:20.437000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:20.498000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:20.543000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:20.955000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:21.070000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:21.118000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:21.896000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:21.917000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:21.954000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:21.990000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:22.050000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:22.104000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:22.530000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:22.665000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:22.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:23.270000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:23.490000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:23.602000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:23.647000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:24.387000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:24.408000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:24.449000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:24.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:24.537000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:24.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:25.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:25.115000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:25.165000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:25.953000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:25.974000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:26.015000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:26.046000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:26.107000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:26.152000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:26.556000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:26.667000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:26.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:27.443000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:27.465000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:27.499000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:27.528000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:27.584000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:27.626000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:28.040000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:28.158000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:28.207000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:28.714000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:28.912000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:29.025000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:29.069000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:29.791000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:29.811000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:29.848000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:29.876000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:29.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:29.979000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:30.388000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:30.506000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:30.553000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:31.294000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:31.315000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:31.353000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:31.383000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:31.442000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:31.486000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:31.900000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:32.014000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:32.060000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:32.810000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:32.832000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:32.872000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:32.903000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:32.961000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:33.005000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:33.413000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:33.539000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:33.595000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:34.126000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:34.322000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:34.433000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:34.479000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:35.224000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:35.246000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:35.281000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:35.310000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:35.368000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:35.411000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:35.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:35.967000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:36.011000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:36.718000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:36.740000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:36.774000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:36.802000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:36.857000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:36.902000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:39.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:39.827000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:39.874000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:40.606000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:40.627000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:40.668000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:40.703000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:40.764000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:40.813000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:41.255000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:41.389000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:41.441000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:41.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:42.160000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:42.268000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:42.314000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:43.032000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:43.056000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:43.091000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:43.120000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:43.182000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:43.231000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:43.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:43.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:43.814000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:44.559000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:44.579000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:44.615000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:44.651000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:44.707000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:44.759000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:45.164000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:45.282000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:45.330000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:46.073000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:46.095000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:46.135000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:46.167000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:46.225000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:46.271000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:46.673000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:46.786000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:46.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:47.335000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:47.534000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:47.642000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:47.689000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:48.407000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:48.427000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:48.464000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:48.493000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:48.549000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:48.592000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:48.984000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:49.093000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:49.138000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:49.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:49.893000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:49.928000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:49.960000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:50.017000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:50.062000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:50.474000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:50.586000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:50.631000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:51.333000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:51.356000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:51.391000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:51.423000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:51.480000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:51.525000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:51.924000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:52.038000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:52.085000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:52.577000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:52.773000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:52.886000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:52.933000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:53.678000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:53.699000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:53.737000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:53.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:53.825000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:53.871000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:54.278000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:54.390000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:54.436000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:55.171000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:55.191000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:55.228000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:55.258000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:55.318000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:55.365000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:55.780000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:55.889000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:55.936000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:56.769000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:56.790000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:56.831000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:56.864000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:56.925000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:56.968000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:57.377000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:57.484000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:57.533000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:58.034000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:58.243000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:58.364000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:09:58.410000 1048184 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -Traceback (most recent call last): - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 196, in _run_module_as_main - return _run_code(code, main_globals, None, - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/runpy.py", line 86, in _run_code - exec(code, run_globals) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 556, in - main() - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 552, in main - export_and_lower(model, config, args) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py", line 460, in export_and_lower - et_prog = to_edge_transform_and_lower( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper - return func(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1405, in to_edge_transform_and_lower - edge_manager = edge_manager.to_backend(method_to_partitioner) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 116, in wrapper - return func(*args, **kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/program/_program.py", line 1707, in to_backend - new_edge_programs = to_backend(method_to_programs_and_partitioners) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/functools.py", line 889, in wrapper - return dispatch(args[0].__class__)(*args, **kw) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 762, in _ - lower_all_submodules_to_backend( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_api.py", line 591, in lower_all_submodules_to_backend - backend_name_to_subclass[backend_id].preprocess_multimethod( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/backend/backend_details.py", line 145, in preprocess_multimethod - preprocess_result = cls.preprocess(program, compile_spec_for_program) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/backends/aoti/aoti_backend.py", line 199, in preprocess - paths = torch._inductor.aot_compile( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/__init__.py", line 310, in aot_compile - return compile_fx_aot( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2048, in compile_fx_aot - compiled_artifacts = compile_fx( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2527, in compile_fx - return compile_fx( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2566, in compile_fx - return _maybe_wrap_and_compile_fx_main( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2655, in _maybe_wrap_and_compile_fx_main - return _compile_fx_main( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2838, in _compile_fx_main - return inference_compiler(unlifted_gm, example_inputs_) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_functorch/_aot_autograd/schemas.py", line 1394, in __call__ - output_code = self.compiler_fn(gm, example_inputs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2719, in fw_compiler_base - return compile_fx_forward( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 2390, in compile_fx_forward - return inner_compile( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/contextlib.py", line 79, in inner - return func(*args, **kwds) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 826, in compile_fx_inner - return wrap_compiler_debug(_compile_fx_inner, compiler_name="inductor")( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_dynamo/repro/after_aot.py", line 273, in debug_wrapper - inner_compiled_fn = compiler_fn(gm, example_inputs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 1026, in _compile_fx_inner - raise InductorError(e, currentframe()).with_traceback( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 1022, in _compile_fx_inner - mb_compiled_graph = fx_codegen_and_compile( - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 1798, in fx_codegen_and_compile - return scheme.codegen_and_compile(gm, example_inputs, inputs_to_check, graph_kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 1344, in codegen_and_compile - _recursive_post_grad_passes(gm, is_inference=is_inference) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 582, in _recursive_post_grad_passes - _recursive_post_grad_passes(subgraph, is_inference) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/compile_fx.py", line 583, in _recursive_post_grad_passes - post_grad_passes(gm, is_inference) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/fx_passes/post_grad.py", line 357, in post_grad_passes - ).apply_graph_pass(decompose_triton_kernel_wrapper_functional) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/fx/passes/graph_transform_observer.py", line 103, in apply_graph_pass - return pass_fn(self.gm.graph) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/fx_passes/post_grad.py", line 1255, in decompose_triton_kernel_wrapper_functional - graph_pass.apply(graph) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/pattern_matcher.py", line 2063, in apply - entry.apply(m, graph, node) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/pattern_matcher.py", line 1132, in apply - self.handler(match, *match.args, **match.kwargs) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/fx_passes/post_grad.py", line 1253, in _ - match.replace_by_example(decomp, flat_args, run_functional_passes=False) - File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_inductor/pattern_matcher.py", line 316, in replace_by_example - assert len(graph_with_eager_vals.graph.nodes) == len( -torch._inductor.exc.InductorError: AssertionError: diff --git a/qwen35_moe_exports/export_dispatch.log b/qwen35_moe_exports/export_dispatch.log deleted file mode 100644 index f4894a055dc..00000000000 --- a/qwen35_moe_exports/export_dispatch.log +++ /dev/null @@ -1,29785 +0,0 @@ -Current Python version 3.10 is below the recommended 3.11 version. It is recommended to upgrade to Python 3.11 or higher for the best experience. -Loading prequantized weights from /home/gasoonjia/models/Qwen3.5-35B-A3B-HQQ-INT4-local/model.safetensors... -Building model on meta device... -Model: 40 layers, 2048d, 256 experts top-8 -Exporting model (single method, dynamic T)... -Export successful! -Lowering to ExecuTorch with CUDA... -/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/examples/models/qwen3_5_moe/export.py:408: ExperimentalWarning: This API and all of cuda backend related functionality are experimental. - partitioner=[CudaPartitioner(compile_specs)], -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:41.273000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:41.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:41.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:41.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:41.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:41.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:41.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:41.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:41.770000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.015000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.031000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.134000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.301000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.354000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.602000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.659000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.774000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:42.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.369000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.730000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:43.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.259000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.334000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.385000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.424000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.545000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.597000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.853000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.869000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:44.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.011000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.188000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.594000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.626000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.936000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:45.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.260000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.486000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.504000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.552000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:46.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.123000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.154000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.785000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:47.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.269000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.528000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.614000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.890000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:48.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.129000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.430000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.542000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.578000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.762000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:49.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.026000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.176000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.428000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.444000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.502000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.548000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.779000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:50.816000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.062000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.105000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.358000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.448000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.698000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:51.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.018000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.350000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.507000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.792000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:52.952000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.560000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.799000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:53.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.270000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.405000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.459000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.837000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.899000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:54.935000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.187000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.228000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.299000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.537000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:55.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.166000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.492000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.600000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.874000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:56.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.666000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.726000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:57.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.314000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.331000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.395000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.628000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.719000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:58.980000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.039000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.131000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.319000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:30:59.809000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.029000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.153000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.625000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.761000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.931000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.393000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.596000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.683000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:01.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.120000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.388000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.478000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.700000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.752000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:02.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.021000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.064000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.184000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.660000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.691000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.771000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:03.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:04.002000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:04.037000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:04.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:04.362000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:04.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:04.458000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:09.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:09.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:09.253000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:09.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:09.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:09.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:09.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:09.924000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:09.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:10.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:10.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:10.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:10.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:10.731000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:10.789000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:11.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:11.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:11.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:11.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:11.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:11.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:11.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:11.916000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:11.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:12.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:12.335000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:12.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:12.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:13.200000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:13.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:13.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:13.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:13.906000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:13.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:13.988000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:14.056000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:14.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:14.375000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:18.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:18.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:19.118000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:19.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:19.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:19.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:19.287000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:19.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:19.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:19.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:19.763000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:20.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:20.300000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:20.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:20.379000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:20.442000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:20.497000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:20.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:20.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:20.926000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:21.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:21.679000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:21.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:21.855000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:22.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:22.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:22.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:22.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:22.561000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:22.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:22.923000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:23.034000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:23.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:23.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:23.643000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:23.690000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:23.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:23.790000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:23.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:24.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:24.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:24.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:24.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:24.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:24.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:24.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:24.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:25.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:25.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:25.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:25.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:25.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:26.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:26.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:26.357000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:26.860000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:26.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:26.927000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:26.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:27.022000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:27.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:27.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:27.450000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:27.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:28.027000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:28.048000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:28.097000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:28.128000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:28.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:28.249000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:28.544000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:28.665000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:28.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:29.245000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:29.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:29.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:29.343000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:29.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:29.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:29.724000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:29.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:29.888000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:30.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:30.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:30.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:30.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:31.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:31.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:31.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:31.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:31.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:31.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:31.786000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:31.900000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:31.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:32.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:32.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:32.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:32.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:32.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:32.670000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:32.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:33.047000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:33.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:33.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:33.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:33.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:33.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:33.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:33.852000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:34.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:34.232000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:34.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:34.794000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:35.009000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:35.130000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:35.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:35.702000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:35.722000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:35.768000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:35.797000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:35.859000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:35.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:36.167000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:36.275000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:36.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:36.840000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:36.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:36.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:36.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:37.001000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:37.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:41.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:41.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:41.661000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:42.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:42.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:42.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:42.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:42.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:42.446000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:42.725000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:42.841000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:42.893000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:43.411000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:43.617000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:43.734000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:43.801000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:44.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:44.376000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:44.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:44.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:44.516000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:44.572000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:44.832000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:44.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:44.997000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:45.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:45.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:45.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:45.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:45.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:45.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:45.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:46.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:46.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:46.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:46.718000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:46.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:46.798000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:46.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:46.919000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:47.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:47.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:47.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:47.882000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:48.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:48.207000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:48.255000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:48.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:48.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:48.871000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:48.903000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:48.968000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:49.032000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:49.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:49.397000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:49.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:49.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:49.966000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:50.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:50.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:50.108000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:50.159000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:50.425000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:50.540000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:50.588000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:51.122000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:51.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:51.201000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:51.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:51.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:51.581000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:51.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:51.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:52.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:52.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:52.577000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:52.622000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:53.115000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:53.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:53.180000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:53.210000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:53.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:53.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:53.582000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:53.696000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:53.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:54.250000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:54.317000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:54.347000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:54.407000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:54.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:54.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:54.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:54.872000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:55.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:55.392000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:55.434000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:55.463000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:55.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:55.575000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:55.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:55.990000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:56.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:56.714000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:56.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:56.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:57.363000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:57.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:57.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:57.451000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:57.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:57.563000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:57.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:57.946000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:57.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:58.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:58.512000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:58.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:58.587000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:58.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:58.710000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:58.971000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:59.085000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:59.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:59.635000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:59.707000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:59.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:59.803000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:31:59.854000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:00.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:00.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:00.268000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:00.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:00.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:01.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:01.139000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:46.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:46.983000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.087000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.141000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.172000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.183000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.230000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.586000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.796000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.812000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.844000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.850000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.930000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:47.937000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.068000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.274000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.306000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.324000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.330000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.353000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.364000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.406000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.493000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.527000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.541000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.755000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.815000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.820000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.842000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.862000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.867000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:48.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.042000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.061000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.070000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.089000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.109000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.119000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.156000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.235000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.403000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.455000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.460000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.498000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.566000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.571000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.641000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.680000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.686000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.818000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.825000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.880000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.894000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.901000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.920000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.929000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.947000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:49.998000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.074000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.081000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.106000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.112000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.121000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.323000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.328000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.377000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.382000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.404000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.409000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.417000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.423000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.549000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.607000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.624000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.648000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.656000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.674000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.729000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.800000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.804000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.829000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.848000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.969000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:50.974000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.091000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.101000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.218000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.240000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.248000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.257000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.262000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.384000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.443000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.453000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.482000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.488000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.509000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.640000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.645000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.676000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.685000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.703000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.709000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.909000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.914000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.963000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.967000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.989000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:51.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.008000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.136000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.189000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.194000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.229000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.234000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.256000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.308000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.413000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.426000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.562000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.639000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.649000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.673000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.695000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.744000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.750000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.827000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.833000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.873000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:52.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.019000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.084000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.103000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.113000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.142000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.174000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.215000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.222000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.296000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.326000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.332000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.342000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.348000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.546000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.551000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.605000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.632000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.638000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.647000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.652000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.776000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.783000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.830000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.835000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.856000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.875000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.881000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.912000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:53.955000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.036000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.060000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.066000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.083000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.290000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.297000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.340000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.351000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.389000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.398000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.471000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.476000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.687000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.693000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.754000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.765000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.777000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.795000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.802000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.826000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.839000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.877000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.884000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.964000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.970000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:54.995000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.006000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.017000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.023000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.221000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.226000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.276000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.280000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.313000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.322000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.327000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.457000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.514000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.524000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.536000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.553000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.558000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.591000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.630000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.636000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.712000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.738000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.751000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.756000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.878000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.883000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.934000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.950000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.976000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:55.982000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.013000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.058000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.135000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.140000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.164000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.170000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.179000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.191000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.310000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.315000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.386000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.412000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.418000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.441000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.452000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.494000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.500000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.585000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.610000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.627000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.634000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.843000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.849000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.905000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.910000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.933000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.939000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.949000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:56.961000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.088000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.094000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.145000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.151000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.169000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.197000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.227000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.237000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.279000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.286000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.365000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.370000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.394000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.400000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.410000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.416000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.550000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.557000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.609000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.615000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.629000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.637000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.664000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.684000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.697000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.736000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.742000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.814000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.821000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.845000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.851000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.861000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.866000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.994000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:57.999000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.052000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.057000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.071000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.095000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.124000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.138000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.177000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.185000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.258000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.263000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.288000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.293000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.302000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.307000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.503000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.510000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.559000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.564000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.592000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.598000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.608000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.613000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.748000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.805000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.811000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.824000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.838000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.857000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.863000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.887000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.898000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.938000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:58.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.025000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.030000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.054000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.063000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.073000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.078000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.204000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.208000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.266000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.271000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.283000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.294000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.312000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.318000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.341000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.352000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.390000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.396000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.474000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.501000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.506000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.520000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.654000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.658000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.708000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.717000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.727000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.737000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.753000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.758000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.778000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.788000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.828000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.834000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.913000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.918000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.944000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.951000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.960000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:32:59.972000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.175000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.181000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.233000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.238000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.261000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.267000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.277000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.289000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.415000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.422000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.475000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.481000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.499000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.508000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.526000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.532000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.554000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.565000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.606000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.616000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.711000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.743000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.749000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.760000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.907000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.957000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.962000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.977000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:00.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.004000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.010000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.028000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.040000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.079000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.163000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.171000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.196000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.202000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.213000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.219000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.374000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.381000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.447000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.454000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.469000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.477000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.495000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.525000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.538000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.580000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.590000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.667000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.672000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.699000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.705000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.716000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:01.723000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.090000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.098000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.155000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.162000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.198000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.206000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.217000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.223000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.366000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.372000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.431000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.438000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.456000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.465000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.484000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.496000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.521000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.539000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.583000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.595000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.675000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.681000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.713000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.721000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.733000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.740000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.902000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.911000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:08.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.003000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.020000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.038000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.045000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.072000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.086000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.126000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.133000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.214000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.220000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.244000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.254000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.265000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.272000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.408000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_local_cumsum_scalar_kernel( -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.414000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.473000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_scaled_dot_kkt_fwd_kernel( -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.479000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.490000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def merge_16x16_to_64x64_inverse_kernel( -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.505000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.523000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def recompute_w_u_fwd_kernel( -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.530000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.556000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_gated_delta_rule_fwd_kernel_h_blockdim64( -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.569000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.611000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def chunk_fwd_kernel_o( -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.618000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.701000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.706000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.732000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.739000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.759000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.766000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.985000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _sdpa_fwd_kernel_m32( -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:09.992000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:10.046000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _topk_kernel( -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:10.051000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:10.077000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_kernel( -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:10.092000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:10.104000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Encountered an exception in identify_mutated_tensors, assuming every input is mutated -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] Traceback (most recent call last): -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 994, in identify_mutated_tensors -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module, ordered_tensor_names = generate_ttir( -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/torch/_higher_order_ops/triton_kernel_wrap.py", line 517, in generate_ttir -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ttir_module = src.make_ir(target, options, codegen_fns, module_map, context) -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/compiler.py", line 80, in make_ir -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return ast_to_ttir(self.fn, self, context=context, options=options, codegen_fns=codegen_fns, -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1651, in ast_to_ttir -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] generator.visit(fn.parse()) -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1556, in visit -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ret = super().visit(node) -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 418, in visit -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] return visitor(node) -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 508, in visit_Module -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ast.NodeVisitor.generic_visit(self, node) -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/ast.py", line 426, in generic_visit -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] self.visit(item) -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] File "/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/triton/compiler/code_generator.py", line 1564, in visit -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] raise CompilationError(self.jit_fn.src, self.cur_node, repr(e)) from None -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] triton.compiler.errors.CompilationError: at 1:0: -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] def _fused_moe_silu_kernel( -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] ^ -W0402 19:33:10.110000 1267819 site-packages/torch/_higher_order_ops/triton_kernel_wrap.py:1026] IndexError('Function argument index out of range') -/home/gasoonjia/.conda/envs/et/lib/python3.10/copyreg.py:101: FutureWarning: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. - return cls.__new__(cls, *args) -/home/gasoonjia/.conda/envs/et/lib/python3.10/site-packages/executorch/exir/tensor.py:83: FutureWarning: guard_size_oblivious will be removed. Consider using explicit unbacked handling potentially utilizing guard_or_false, guard_or_true, or statically_known_true - return guard_size_oblivious(self.stride < other.stride) -Saving to /home/gasoonjia/executorch/qwen35_moe_exports/model.pte... -Saved 4.9 MB -Saved tensor data to /home/gasoonjia/executorch/qwen35_moe_exports// -Done! diff --git a/test_cond_full.py b/test_cond_full.py deleted file mode 100644 index be14776baae..00000000000 --- a/test_cond_full.py +++ /dev/null @@ -1,85 +0,0 @@ -"""Test: torch.cond through ExecuTorch CUDA pipeline - matching actual model pattern.""" -import torch -import torch.nn as nn -from torch.export import Dim, export - -from executorch.backends.cuda.cuda_backend import CudaBackend -from executorch.backends.cuda.cuda_partitioner import CudaPartitioner -from executorch.exir import EdgeCompileConfig, to_edge_transform_and_lower - - -class M(nn.Module): - def __init__(self): - super().__init__() - self.register_buffer("state", torch.zeros(1, 4, 8, 8)) - - def forward(self, x, input_pos): - B, T, H, K = x.shape - V = K - scale = K**-0.5 - - def _recurrent(x, state): - s = state.float() - x_f = x[:, 0].float() - s = s + torch.einsum("bhk,bhv->bhkv", x_f, x_f) - o = torch.einsum("bhkv,bhk->bhv", s, x_f) * scale - out = o.unsqueeze(1).expand(-1, x.shape[1], -1, -1).to(x.dtype) - return out.contiguous(), s.contiguous() - - def _chunked(x, state): - # Simulates a non-aliasing computation - out = (x * 0.5 + x * 0.5) # non-aliasing - new_state = state + torch.einsum( - "bhk,bhv->bhkv", x[:, -1].float(), x[:, -1].float() - ) - return out.contiguous(), new_state.float().contiguous() - - is_single = input_pos[0] == input_pos[-1] - output, new_state = torch.cond( - is_single, _recurrent, _chunked, (x, self.state[:B]) - ) - - with torch.no_grad(): - self.state[:B].copy_(new_state) - - return output - - -def main(): - m = M().cuda() - x = torch.randn(1, 2, 4, 8, device="cuda") - input_pos = torch.tensor([0, 1], device="cuda") - - seq = Dim("seq", min=1, max=128) - print("Step 1: Exporting...") - prog = export(m, (x, input_pos), dynamic_shapes=({1: seq}, {0: seq}), strict=True) - print("Export OK") - - # Test aot_compile directly (no ExecuTorch) - print("Step 2: Direct aot_compile...") - gm = prog.module() - try: - paths = torch._inductor.aot_compile(gm, (x, input_pos)) - print(f"Direct aot_compile: SUCCESS") - except Exception as e: - print(f"Direct aot_compile: FAILED - {type(e).__name__}: {str(e)[:200]}") - - # Test through ExecuTorch - CudaBackend.get_decomposition_table = classmethod(lambda cls: {}) - compile_specs = [CudaBackend.generate_method_name_compile_spec("forward")] - print("Step 3: ExecuTorch pipeline...") - try: - et_prog = to_edge_transform_and_lower( - prog, - partitioner=[CudaPartitioner(compile_specs)], - compile_config=EdgeCompileConfig( - _check_ir_validity=False, _skip_dim_order=True - ), - ) - print("ExecuTorch: SUCCESS") - except Exception as e: - print(f"ExecuTorch: FAILED - {type(e).__name__}: {str(e)[:200]}") - - -if __name__ == "__main__": - main() diff --git a/test_dispatch.py b/test_dispatch.py deleted file mode 100644 index 545ec5deebd..00000000000 --- a/test_dispatch.py +++ /dev/null @@ -1,54 +0,0 @@ -"""Test: triton_op with runtime dispatch + aot_compile.""" -import torch -import triton -import triton.language as tl -from torch.library import triton_op, wrap_triton - - -@triton.jit -def _mul_kernel(x_ptr, out_ptr, n: tl.constexpr): - idx = tl.arange(0, n) - x = tl.load(x_ptr + idx) - tl.store(out_ptr + idx, x * 2) - - -@triton.jit -def _add_kernel(x_ptr, out_ptr, n: tl.constexpr): - idx = tl.arange(0, n) - x = tl.load(x_ptr + idx) - tl.store(out_ptr + idx, x + 1) - - -@triton_op("test::dispatch_triton", mutates_args={}) -def dispatch_triton(x: torch.Tensor) -> torch.Tensor: - out = torch.empty_like(x) - n = x.numel() - if x.shape[0] == 1: - wrap_triton(_mul_kernel)[(1,)](x, out, n) - else: - wrap_triton(_add_kernel)[(1,)](x, out, n) - return out - - -if __name__ == "__main__": - x1 = torch.randn(1, 4, device="cuda") - x2 = torch.randn(2, 4, device="cuda") - print("T=1:", dispatch_triton(x1)) - print("T=2:", dispatch_triton(x2)) - - from torch.export import Dim, export - - class M(torch.nn.Module): - def forward(self, x): - return torch.ops.test.dispatch_triton(x) - - m = M().cuda() - seq = Dim("seq", min=1, max=128) - prog = export(m, (x2,), dynamic_shapes=({0: seq},)) - gm = prog.module() - print("aot_compile...") - try: - paths = torch._inductor.aot_compile(gm, (x2,)) - print(f"SUCCESS: {paths}") - except Exception as e: - print(f"FAILED: {type(e).__name__}: {str(e)[:300]}") diff --git a/test_recurrent.py b/test_recurrent.py deleted file mode 100644 index f8d48cf5589..00000000000 --- a/test_recurrent.py +++ /dev/null @@ -1,109 +0,0 @@ -"""Quick correctness test: recurrent Triton kernel vs einsum reference.""" -import sys -sys.path.insert(0, "/home/gasoonjia/executorch") -import torch - -# Import the kernel from source (not installed) -from backends.cuda.triton.kernels.chunk_gated_delta_rule import ( - _launch_recurrent, - _launch_chunked, -) - - -def reference_recurrent(q, k, v, g, beta, state, scale): - """Reference einsum implementation.""" - state_f = state.float() - q_f = q[:, 0].float() - k_f = k[:, 0].float() - v_f = v[:, 0].float() - g_f = g[:, 0] - beta_f = beta[:, 0].float() - - state_f = state_f * g_f.exp().unsqueeze(-1).unsqueeze(-1) - Sk = torch.einsum("bhkv,bhk->bhv", state_f, k_f) - delta = v_f - Sk - state_f = state_f + beta_f.unsqueeze(-1).unsqueeze(-1) * torch.einsum( - "bhk,bhv->bhkv", k_f, delta - ) - o = torch.einsum("bhkv,bhk->bhv", state_f, q_f) * scale - return o.unsqueeze(1).to(v.dtype), state_f - - -def test_recurrent_kernel(): - torch.manual_seed(42) - B, T, H, K, V = 1, 1, 16, 64, 128 - scale = K**-0.5 - - q = torch.randn(B, T, H, K, device="cuda", dtype=torch.bfloat16) - k = torch.randn(B, T, H, K, device="cuda", dtype=torch.bfloat16) - v = torch.randn(B, T, H, V, device="cuda", dtype=torch.bfloat16) - g = torch.randn(B, T, H, device="cuda", dtype=torch.float32) * 0.1 - beta = torch.rand(B, T, H, device="cuda", dtype=torch.float32) - state = torch.randn(B, H, K, V, device="cuda", dtype=torch.float32) * 0.01 - - # Reference - ref_o, ref_state = reference_recurrent(q, k, v, g, beta, state, scale) - - # Triton kernel - tri_o, tri_state = _launch_recurrent(q, k, v, g, beta, state, scale) - - # Compare - o_err = (ref_o.float() - tri_o.float()).abs().max().item() - s_err = (ref_state - tri_state).abs().max().item() - o_rel = o_err / ref_o.float().abs().max().item() - s_rel = s_err / ref_state.abs().max().item() - - print(f"Output max abs err: {o_err:.6e}, rel: {o_rel:.6e}") - print(f"State max abs err: {s_err:.6e}, rel: {s_rel:.6e}") - - if o_rel < 1e-3 and s_rel < 1e-3: - print("PASS") - else: - print("FAIL — tolerance exceeded") - return False - return True - - -def test_dispatch(): - """Test that T=1 goes through recurrent and T=2 goes through chunked.""" - torch.manual_seed(42) - B, H, K, V = 1, 16, 64, 128 - - # T=1 - q1 = torch.randn(B, 1, H, K, device="cuda", dtype=torch.bfloat16) - k1 = torch.randn(B, 1, H, K, device="cuda", dtype=torch.bfloat16) - v1 = torch.randn(B, 1, H, V, device="cuda", dtype=torch.bfloat16) - g1 = torch.randn(B, 1, H, device="cuda", dtype=torch.float32) * 0.1 - beta1 = torch.rand(B, 1, H, device="cuda", dtype=torch.float32) - state = torch.randn(B, H, K, V, device="cuda", dtype=torch.float32) * 0.01 - - from backends.cuda.triton.kernels.chunk_gated_delta_rule import chunk_gated_delta_rule - - o1, s1 = chunk_gated_delta_rule(q1, k1, v1, g1, beta1, state) - print(f"T=1 dispatch: output shape {o1.shape}, state shape {s1.shape}") - assert o1.shape == (B, 1, H, V), f"Bad output shape: {o1.shape}" - assert s1.shape == (B, H, K, V), f"Bad state shape: {s1.shape}" - - # T=4 - q4 = torch.randn(B, 4, H, K, device="cuda", dtype=torch.bfloat16) - k4 = torch.randn(B, 4, H, K, device="cuda", dtype=torch.bfloat16) - v4 = torch.randn(B, 4, H, V, device="cuda", dtype=torch.bfloat16) - g4 = torch.randn(B, 4, H, device="cuda", dtype=torch.float32) * 0.1 - beta4 = torch.rand(B, 4, H, device="cuda", dtype=torch.float32) - - o4, s4 = chunk_gated_delta_rule(q4, k4, v4, g4, beta4, state) - print(f"T=4 dispatch: output shape {o4.shape}, state shape {s4.shape}") - assert o4.shape == (B, 4, H, V), f"Bad output shape: {o4.shape}" - assert s4.shape == (B, H, K, V), f"Bad state shape: {s4.shape}" - - print("Dispatch test PASS") - return True - - -if __name__ == "__main__": - print("=== Recurrent kernel correctness ===") - ok1 = test_recurrent_kernel() - print() - print("=== Dispatch test ===") - ok2 = test_dispatch() - sys.exit(0 if ok1 and ok2 else 1) From eff976d42ba69024bc44e25adfe29f8612441fd7 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Thu, 2 Apr 2026 21:28:26 -0700 Subject: [PATCH 07/12] lint fix - 3 --- examples/models/qwen3_5_moe/bench_fla.py | 140 ------------------ .../models/qwen3_5_moe/test_recurrent_fla.py | 104 ------------- 2 files changed, 244 deletions(-) delete mode 100644 examples/models/qwen3_5_moe/bench_fla.py delete mode 100644 examples/models/qwen3_5_moe/test_recurrent_fla.py diff --git a/examples/models/qwen3_5_moe/bench_fla.py b/examples/models/qwen3_5_moe/bench_fla.py deleted file mode 100644 index b8040bdbd85..00000000000 --- a/examples/models/qwen3_5_moe/bench_fla.py +++ /dev/null @@ -1,140 +0,0 @@ -"""Benchmark recurrent vs chunked FLA in full model decode with torch.compile. - -Usage: - # Recurrent (current code): - python bench_fla.py --prequantized ~/models/Qwen3.5-35B-A3B-HQQ-INT4-local --mode recurrent - # Chunked (original FLA triton kernels): - python bench_fla.py --prequantized ~/models/Qwen3.5-35B-A3B-HQQ-INT4-local --mode chunked -""" -import argparse -import time -import torch - - -def patch_chunked(): - """Restore chunked FLA in GatedDeltaNet before model construction.""" - import executorch.examples.models.qwen3_5_moe.model as mod - - original_forward = mod.GatedDeltaNet.forward - - def chunked_forward(self, x, input_pos): - """GatedDeltaNet.forward using chunked FLA triton kernels.""" - import torch.nn.functional as F - - B, T, _ = x.size() - - reset = (input_pos[0] == 0).to(self.conv_state.dtype) - keep = 1.0 - reset - self.conv_state[:B].mul_(keep) - self.recurrent_state[:B].mul_(keep) - - proj = self.in_proj(x) - cd = self.conv_dim - vd = self.value_dim - nh = self.num_v_heads - mixed_qkv = proj[..., :cd] - z = proj[..., cd : cd + vd].reshape(B, T, self.num_v_heads, self.head_v_dim) - b = proj[..., cd + vd : cd + vd + nh] - a = proj[..., cd + vd + nh :] - - qkv_t = mixed_qkv.transpose(1, 2) - conv_input = torch.cat([self.conv_state[:B], qkv_t], dim=-1) - with torch.no_grad(): - self.conv_state[:B].copy_(conv_input[:, :, -self.conv_kernel_size :]) - w = self.conv1d.weight.squeeze(1).float() - T_conv = conv_input.shape[-1] - self.conv_kernel_size + 1 - acc = torch.zeros( - B, conv_input.shape[1], T_conv, - dtype=torch.float32, device=conv_input.device, - ) - for k in range(self.conv_kernel_size): - acc = acc + conv_input[:, :, k : k + T_conv].float() * w[:, k : k + 1] - qkv_conv = F.silu(acc[:, :, -T:]).to(conv_input.dtype).transpose(1, 2) - - kd = self.key_dim - q = qkv_conv[..., :kd].reshape(B, T, self.num_k_heads, self.head_k_dim) - k = qkv_conv[..., kd : 2 * kd].reshape(B, T, self.num_k_heads, self.head_k_dim) - v = qkv_conv[..., 2 * kd :].reshape(B, T, self.num_v_heads, self.head_v_dim) - - q = F.normalize(q, p=2, dim=-1) - k = F.normalize(k, p=2, dim=-1) - - if self.head_repeat > 1: - q = q.repeat_interleave(self.head_repeat, dim=2) - k = k.repeat_interleave(self.head_repeat, dim=2) - - beta = b.sigmoid() - g = -self.A_log.float().exp() * F.softplus(a.float() + self.dt_bias) - - # Use chunked FLA triton kernels - output, state = torch.ops.triton.chunk_gated_delta_rule( - q, k, v, g, beta, self.recurrent_state[:B] - ) - with torch.no_grad(): - self.recurrent_state[:B].copy_(state) - - output = output.reshape(-1, self.head_v_dim) - z = z.reshape(-1, self.head_v_dim) - output = self.norm(output, z) - output = output.reshape(B, T, -1) - - return self.out_proj(output) - - mod.GatedDeltaNet.forward = chunked_forward - print("Patched: using chunked FLA triton kernels") - - -def main(): - parser = argparse.ArgumentParser() - parser.add_argument("--prequantized", required=True) - parser.add_argument("--mode", choices=["recurrent", "chunked"], required=True) - parser.add_argument("--steps", type=int, default=50) - parser.add_argument("--warmup", type=int, default=30) - parser.add_argument("--no-compile", action="store_true") - args = parser.parse_args() - - # Patch BEFORE any model import if chunked - if args.mode == "chunked": - patch_chunked() - - import executorch.backends.cuda.triton.kernels # register triton ops - from executorch.examples.models.qwen3_5_moe.export import load_prequantized_model - from executorch.examples.models.qwen3_5_moe.inference import _move_to_cuda - - print("Loading model...") - model, config = load_prequantized_model(args.prequantized, max_seq_len=4096) - _move_to_cuda(model, config) - model.eval() - - if not args.no_compile: - print("Compiling with torch.compile...") - model = torch.compile(model, mode="default") - - # Warmup - print(f"Warming up ({args.warmup} steps)...") - with torch.no_grad(): - for i in range(args.warmup): - tok = torch.tensor([[1]], dtype=torch.long, device="cuda") - pos = torch.tensor([i], dtype=torch.long, device="cuda") - model(tok, pos) - torch.cuda.synchronize() - - # Benchmark - print(f"Benchmarking ({args.steps} decode steps)...") - torch.cuda.synchronize() - t0 = time.perf_counter() - with torch.no_grad(): - for i in range(args.steps): - tok = torch.tensor([[1]], dtype=torch.long, device="cuda") - pos = torch.tensor([args.warmup + i], dtype=torch.long, device="cuda") - model(tok, pos) - torch.cuda.synchronize() - elapsed = time.perf_counter() - t0 - - tok_s = args.steps / elapsed - ms_per_step = elapsed / args.steps * 1000 - print(f"\nResult [{args.mode}]: {tok_s:.1f} tok/s ({ms_per_step:.2f} ms/step, {args.steps} steps)") - - -if __name__ == "__main__": - main() diff --git a/examples/models/qwen3_5_moe/test_recurrent_fla.py b/examples/models/qwen3_5_moe/test_recurrent_fla.py deleted file mode 100644 index 13f2345cd03..00000000000 --- a/examples/models/qwen3_5_moe/test_recurrent_fla.py +++ /dev/null @@ -1,104 +0,0 @@ -"""Validate recurrent gated delta rule vs chunked FLA version.""" -import torch -import torch.nn.functional as F - -# Import the chunked version -import executorch.backends.cuda.triton.kernels # register triton ops - - -def recurrent_gated_delta_rule(q, k, v, g, beta, initial_state): - """Recurrent gated delta rule (reference implementation).""" - B, T, H, K = q.shape - V = v.shape[-1] - scale = K**-0.5 - state = initial_state.float() - - outputs = [] - for t in range(T): - q_t = q[:, t].float() - k_t = k[:, t].float() - v_t = v[:, t].float() - g_t = g[:, t] - beta_t = beta[:, t].float() - - state = state * g_t.exp().unsqueeze(-1).unsqueeze(-1) - Sk = torch.einsum("bhkv,bhk->bhv", state, k_t) - delta = v_t - Sk - state = state + beta_t.unsqueeze(-1).unsqueeze(-1) * torch.einsum( - "bhk,bhv->bhkv", k_t, delta - ) - o_t = torch.einsum("bhkv,bhk->bhv", state, q_t) * scale - outputs.append(o_t) - - output = torch.stack(outputs, dim=1).to(q.dtype) - return output, state - - -def test_correctness(): - """Compare recurrent vs chunked for T=1.""" - torch.manual_seed(42) - B, T, H, K, V = 1, 1, 32, 128, 128 - - q = F.normalize(torch.randn(B, T, H, K, device="cuda", dtype=torch.bfloat16), dim=-1) - k = F.normalize(torch.randn(B, T, H, K, device="cuda", dtype=torch.bfloat16), dim=-1) - v = torch.randn(B, T, H, V, device="cuda", dtype=torch.bfloat16) - g = -torch.rand(B, T, H, device="cuda", dtype=torch.float32) # negative log-space - beta = torch.rand(B, T, H, device="cuda", dtype=torch.bfloat16).sigmoid() - initial_state = torch.randn(B, H, K, V, device="cuda", dtype=torch.bfloat16) * 0.01 - - # Chunked version - with torch.no_grad(): - o_chunked, s_chunked = torch.ops.triton.chunk_gated_delta_rule( - q, k, v, g, beta, initial_state - ) - - # Recurrent version - with torch.no_grad(): - o_recurrent, s_recurrent = recurrent_gated_delta_rule( - q, k, v, g, beta, initial_state - ) - - # Compare - o_diff = (o_chunked.float() - o_recurrent.float()).abs().max().item() - s_diff = (s_chunked.float() - s_recurrent.float()).abs().max().item() - - print(f"T=1 correctness check:") - print(f" Output max diff: {o_diff:.6f}") - print(f" State max diff: {s_diff:.6f}") - - # Also test T>1 for completeness - T2 = 4 - q2 = F.normalize(torch.randn(B, T2, H, K, device="cuda", dtype=torch.bfloat16), dim=-1) - k2 = F.normalize(torch.randn(B, T2, H, K, device="cuda", dtype=torch.bfloat16), dim=-1) - v2 = torch.randn(B, T2, H, V, device="cuda", dtype=torch.bfloat16) - g2 = -torch.rand(B, T2, H, device="cuda", dtype=torch.float32) - beta2 = torch.rand(B, T2, H, device="cuda", dtype=torch.bfloat16).sigmoid() - state2 = torch.randn(B, H, K, V, device="cuda", dtype=torch.bfloat16) * 0.01 - - with torch.no_grad(): - o_chunked2, s_chunked2 = torch.ops.triton.chunk_gated_delta_rule( - q2, k2, v2, g2, beta2, state2 - ) - o_recurrent2, s_recurrent2 = recurrent_gated_delta_rule( - q2, k2, v2, g2, beta2, state2 - ) - - o_diff2 = (o_chunked2.float() - o_recurrent2.float()).abs().max().item() - s_diff2 = (s_chunked2.float() - s_recurrent2.float()).abs().max().item() - - print(f"\nT={T2} correctness check:") - print(f" Output max diff: {o_diff2:.6f}") - print(f" State max diff: {s_diff2:.6f}") - - # Relative errors - o_rel = o_diff / (o_chunked.float().abs().max().item() + 1e-10) - s_rel = s_diff / (s_chunked.float().abs().max().item() + 1e-10) - print(f"\nT=1 relative errors: output={o_rel:.6f}, state={s_rel:.6f}") - - passed = o_diff < 0.01 and s_diff < 0.01 - print(f"\n{'PASS' if passed else 'FAIL'}") - return passed - - -if __name__ == "__main__": - test_correctness() From 7dd428020f6928c925761e667dab6bd1efa49ec4 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Fri, 3 Apr 2026 00:01:25 -0700 Subject: [PATCH 08/12] Optimize recurrent kernel: parallelize over V tiles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Grid changed from (B*H,) to (V//BV, B*H) — 4x more blocks, better SM occupancy (128 blocks vs 32 on A100) - BV reduced from 128 to 32 — lower register pressure, no spilling - Removed unnecessary .contiguous() copies on squeezed inputs - Removed debug print from triton_op dispatch - GPU kernel time: 6us (3.47x faster than Inductor-fused native ops) --- .../triton/kernels/chunk_gated_delta_rule.py | 110 +++++++++--------- 1 file changed, 53 insertions(+), 57 deletions(-) diff --git a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py index 7d61cfe4282..f4a104e577c 100644 --- a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py +++ b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py @@ -59,9 +59,9 @@ def _unwrap(kernel): # --------------------------------------------------------------------------- # Recurrent kernel: fused single-step gated delta rule for T=1 decode. # -# Each thread block handles one (batch, head) pair. -# Iterates over V-tiles: for each V-tile, loads the K-dim of state, q, k, v, -# computes the gated delta rule update and output dot product. +# Grid: (V // BV, B * H) — one block per (batch, head, v_tile). +# Each block handles a [K, BV] slice of the state matrix. +# Parallelizing over V tiles increases SM occupancy from 32 to 128+ blocks. # --------------------------------------------------------------------------- @@ -79,12 +79,18 @@ def _recurrent_gated_delta_rule_kernel( # Dims K: tl.constexpr, V: tl.constexpr, - BK: tl.constexpr, # block size for K dimension - BV: tl.constexpr, # block size for V dimension + BK: tl.constexpr, # block size for K dimension (= K, power of 2) + BV: tl.constexpr, # block size for V dimension (tile size) scale: tl.constexpr, ): - # One block per (batch, head) - bh = tl.program_id(0) + # Grid: (V // BV, B * H) + v_tile_idx = tl.program_id(0) + bh = tl.program_id(1) + + # V-tile range for this block + v_start = v_tile_idx * BV + v_range = v_start + tl.arange(0, BV) + v_mask = v_range < V # Load scalar g and beta for this (b, h) g_val = tl.load(g_ptr + bh).to(tl.float32) @@ -92,61 +98,51 @@ def _recurrent_gated_delta_rule_kernel( decay = tl.exp(g_val) # Load full q and k vectors: [K] - q_base = bh * K - k_base = bh * K + qk_base = bh * K k_range = tl.arange(0, BK) k_mask = k_range < K - q_vec = tl.load(q_ptr + q_base + k_range, mask=k_mask, other=0.0).to(tl.float32) - k_vec = tl.load(k_ptr + k_base + k_range, mask=k_mask, other=0.0).to(tl.float32) + q_vec = tl.load(q_ptr + qk_base + k_range, mask=k_mask, other=0.0).to(tl.float32) + k_vec = tl.load(k_ptr + qk_base + k_range, mask=k_mask, other=0.0).to(tl.float32) - # Process V in tiles + # Load v tile: [BV] v_base = bh * V - state_base = bh * K * V # state: [K, V] for this (b, h) - - for v_start in range(0, V, BV): - v_range = v_start + tl.arange(0, BV) - v_mask = v_range < V - - # Load v tile: [BV] - v_tile = tl.load(v_ptr + v_base + v_range, mask=v_mask, other=0.0).to( - tl.float32 - ) + v_tile = tl.load(v_ptr + v_base + v_range, mask=v_mask, other=0.0).to(tl.float32) - # Load state tile: [BK, BV] — state[k, v] at state_base + k*V + v - s_offsets = k_range[:, None] * V + v_range[None, :] - s_mask = k_mask[:, None] & v_mask[None, :] - state_tile = tl.load( - state_ptr + state_base + s_offsets, mask=s_mask, other=0.0 - ).to(tl.float32) + # Load state tile: [BK, BV] — state[k, v] at state_base + k*V + v + state_base = bh * K * V + s_offsets = k_range[:, None] * V + v_range[None, :] + s_mask = k_mask[:, None] & v_mask[None, :] + state_tile = tl.load( + state_ptr + state_base + s_offsets, mask=s_mask, other=0.0 + ).to(tl.float32) - # Step 1: state *= exp(g) - state_tile = state_tile * decay + # Step 1: state *= exp(g) + state_tile = state_tile * decay - # Step 2: Sk = state^T @ k → [BV] (dot product along K) - # Sk[v] = sum_k state[k, v] * k[k] - Sk = tl.sum(state_tile * k_vec[:, None], axis=0) + # Step 2: Sk = state^T @ k → [BV] (dot product along K) + Sk = tl.sum(state_tile * k_vec[:, None], axis=0) - # Step 3: delta = v - Sk - delta = v_tile - Sk + # Step 3: delta = v - Sk + delta = v_tile - Sk - # Step 4: state += beta * outer(k, delta) - state_tile = state_tile + beta_val * (k_vec[:, None] * delta[None, :]) + # Step 4: state += beta * outer(k, delta) + state_tile = state_tile + beta_val * (k_vec[:, None] * delta[None, :]) - # Step 5: o = state^T @ q → [BV] - o_tile = tl.sum(state_tile * q_vec[:, None], axis=0) * scale + # Step 5: o = state^T @ q → [BV] + o_tile = tl.sum(state_tile * q_vec[:, None], axis=0) * scale - # Store output tile - tl.store( - o_ptr + v_base + v_range, o_tile.to(o_ptr.dtype.element_ty), mask=v_mask - ) + # Store output tile + tl.store( + o_ptr + v_base + v_range, o_tile.to(o_ptr.dtype.element_ty), mask=v_mask + ) - # Store new state tile - tl.store( - new_state_ptr + state_base + s_offsets, - state_tile.to(new_state_ptr.dtype.element_ty), - mask=s_mask, - ) + # Store new state tile + tl.store( + new_state_ptr + state_base + s_offsets, + state_tile.to(new_state_ptr.dtype.element_ty), + mask=s_mask, + ) def _launch_recurrent(q, k, v, g, beta, initial_state, scale): @@ -164,20 +160,20 @@ def _launch_recurrent(q, k, v, g, beta, initial_state, scale): B, _, H, K = q.shape V = v.shape[-1] - # Squeeze T=1 dim for kernel: [B, H, *] - q_2d = q[:, 0].contiguous() # [B, H, K] - k_2d = k[:, 0].contiguous() # [B, H, K] - v_2d = v[:, 0].contiguous() # [B, H, V] - g_2d = g[:, 0].contiguous() # [B, H] - beta_2d = beta[:, 0].contiguous() # [B, H] + # Squeeze T=1 dim via slicing (avoids .contiguous() copy) + q_2d = q[:, 0] # [B, H, K] + k_2d = k[:, 0] # [B, H, K] + v_2d = v[:, 0] # [B, H, V] + g_2d = g[:, 0] # [B, H] + beta_2d = beta[:, 0] # [B, H] o_2d = torch.empty(B, H, V, device=q.device, dtype=q.dtype) final_state = torch.empty(B, H, K, V, device=q.device, dtype=torch.float32) BK = triton.next_power_of_2(K) - BV = min(triton.next_power_of_2(V), 128) # cap tile size + BV = 32 # small tiles → low register pressure, high SM occupancy - grid = (B * H,) + grid = (triton.cdiv(V, BV), B * H) wrap_triton(_recurrent_gated_delta_rule_kernel)[grid]( q_ptr=q_2d, k_ptr=k_2d, From 3a1ee31752f5c3954c4039cd6a5920ab7c0ecb8a Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Sat, 4 Apr 2026 18:24:50 -0700 Subject: [PATCH 09/12] Dual-method PTE with GPU-resident state for Qwen3.5 MoE - Split model into prefill (chunked FLA triton_op) and decode (native PyTorch recurrent delta rule) methods with explicit state passing - Add runtime_specs processing in CudaBackend::init() so LoadBackendOptionsMap options (skip_copy_output_to_cpu, use_shared_cuda_stream) take effect - Keep state tensors GPU-resident across method calls; only copy logits to CPU for sampling via cudaMemcpy - Achieves 77.4 tok/s decode (3.75x over naive dual-method baseline) Modified files: - cuda_backend.cpp: read runtime_specs in init() for skip_copy + shared stream - main.cpp: dual-method runner with GPU-resident state, logits CPU copy helper - CMakeLists.txt: link CUDA::cudart for cudaMemcpy - model.py: dual-method model definition (prefill + decode) - export.py: export script for dual-method PTE --- backends/cuda/runtime/cuda_backend.cpp | 21 ++ examples/models/qwen3_5_moe/CMakeLists.txt | 2 +- examples/models/qwen3_5_moe/export.py | 99 ++++++-- examples/models/qwen3_5_moe/inference.py | 21 +- examples/models/qwen3_5_moe/main.cpp | 274 +++++++++++++++++++-- examples/models/qwen3_5_moe/model.py | 208 +++++++++++----- 6 files changed, 518 insertions(+), 107 deletions(-) diff --git a/backends/cuda/runtime/cuda_backend.cpp b/backends/cuda/runtime/cuda_backend.cpp index c94d56b796f..f25629cfaa1 100644 --- a/backends/cuda/runtime/cuda_backend.cpp +++ b/backends/cuda/runtime/cuda_backend.cpp @@ -262,6 +262,27 @@ class ET_EXPERIMENTAL CudaBackend final FreeableBuffer* processed, // This will be a empty buffer ArrayRef compile_specs // This will be my empty list ) const override { + // Apply runtime_specs from LoadBackendOptionsMap (if provided) + auto runtime_specs = context.runtime_specs(); + if (runtime_specs.size() > 0) { + for (size_t i = 0; i < runtime_specs.size(); ++i) { + const auto& opt = runtime_specs[i]; + if (std::strcmp(opt.key, kSkipCopyOutputToCpuForMethod) == 0) { + if (auto* val = + std::get_if>( + &opt.value)) { + const_cast(this)->set_skip_copy_method(*val); + } + } else if (std::strcmp(opt.key, kUseSharedCudaStream) == 0) { + if (auto* val = std::get_if(&opt.value)) { + if (*val) { + const_cast(this)->create_shared_cuda_stream(); + } + } + } + } + } + std::string method_name; for (const CompileSpec& spec : compile_specs) { if (std::strcmp(spec.key, "method_name") == 0) { diff --git a/examples/models/qwen3_5_moe/CMakeLists.txt b/examples/models/qwen3_5_moe/CMakeLists.txt index 6e9e52eef62..1961a49562b 100644 --- a/examples/models/qwen3_5_moe/CMakeLists.txt +++ b/examples/models/qwen3_5_moe/CMakeLists.txt @@ -44,7 +44,7 @@ list( # CUDA backend (required) find_package(CUDAToolkit REQUIRED) -list(APPEND link_libraries aoti_cuda_backend) +list(APPEND link_libraries aoti_cuda_backend CUDA::cudart) executorch_target_link_options_shared_lib(aoti_cuda_backend) # Tokenizer diff --git a/examples/models/qwen3_5_moe/export.py b/examples/models/qwen3_5_moe/export.py index 01125dc75e3..3c92f7d7634 100644 --- a/examples/models/qwen3_5_moe/export.py +++ b/examples/models/qwen3_5_moe/export.py @@ -107,9 +107,6 @@ def load_prequantized_model(prequantized_dir, max_seq_len=4096): # Any missing weight key indicates a version mismatch between the # checkpoint and the model (e.g., unfused vs fused projections). runtime_prefixes = ( - ".kv_cache.", - ".conv_state", - ".recurrent_state", ".mask", ".inv_freq", ) @@ -312,10 +309,10 @@ def _materialize_buffers(model, config): """Materialize meta-device buffers before torch.export. Replaces meta buffers with real tensors on CPU, recomputes RoPE - inv_freq and causal masks. + inv_freq and causal masks. State buffers (KV cache, conv/recurrent + state) are no longer registered buffers — they are explicit function args. """ - # State buffers (KV cache, conv/recurrent state) are bf16 to match - # compute dtype. Masks stay bool, inv_freq stays float32. + # Masks stay bool, inv_freq stays float32. for fqn, buf in list(model.named_buffers()): if buf.device.type == "meta": dtype = torch.bfloat16 if buf.dtype != torch.bool else torch.bool @@ -354,7 +351,17 @@ def _materialize_buffers(model, config): def export_and_lower(model, config, args): - """Export model to .pte via torch.export + CUDA backend.""" + """Export model to .pte via torch.export + CUDA backend. + + Exports two methods: + - "forward": decode path (T=1), uses native PyTorch recurrent FLA + so AOTI can fuse with surrounding ops for maximum decode throughput. + - "prefill": prefill path (T>=2), uses chunked FLA triton_op with + dynamic sequence length. + + Both methods take explicit state tensors (conv_states, recurrent_states, + k_caches, v_caches) as inputs and return updated state as outputs. + """ import torch._inductor.config as inductor_config from executorch.backends.cuda.cuda_backend import CudaBackend @@ -374,25 +381,58 @@ def export_and_lower(model, config, args): # -O0 compiles ~8x faster than -O1 with no measurable runtime impact. inductor_config.aot_inductor.compile_wrapper_opt_level = "O0" - # Dynamic shapes - example_tokens = torch.tensor([[0, 1]], dtype=torch.long) - example_input_pos = torch.tensor([0, 1], dtype=torch.long) - seq_dim = Dim("seq_len", min=1, max=config.max_seq_len - 1) - dynamic_shapes = ({1: seq_dim}, {0: seq_dim}) + # Create initial state tensors + conv_states, recurrent_states, k_caches, v_caches = \ + Qwen35MoE.make_initial_state(config) - print("Exporting with torch.export...") + # --- Decode method (T=1, static shape) --- + print("Exporting decode method (forward)...") + decode_tokens = torch.tensor([[0]], dtype=torch.long) + decode_pos = torch.tensor([0], dtype=torch.long) with torch.no_grad(): - exported = export( + decode_ep = export( model, - (example_tokens, example_input_pos), - dynamic_shapes=dynamic_shapes, + (decode_tokens, decode_pos, + conv_states, recurrent_states, k_caches, v_caches), strict=True, ) - print("Export successful!") + print("Decode export successful!") + + # --- Prefill method (T>=2, dynamic shape) --- + print("Exporting prefill method...") + prefill_tokens = torch.tensor([[0, 1]], dtype=torch.long) + prefill_pos = torch.tensor([0, 1], dtype=torch.long) + seq_dim = Dim("seq_len", min=2, max=config.max_seq_len - 1) + # Dynamic shapes: only tokens dim 1 and pos dim 0 are dynamic; + # state tensors have static shapes. + prefill_dynamic_shapes = ( + {1: seq_dim}, # tokens + {0: seq_dim}, # input_pos + None, # conv_states + None, # recurrent_states + None, # k_caches + None, # v_caches + ) + with torch.no_grad(): + prefill_ep = export( + model, + (prefill_tokens, prefill_pos, + conv_states, recurrent_states, k_caches, v_caches), + dynamic_shapes=prefill_dynamic_shapes, + strict=True, + ) + print("Prefill export successful!") - # Lower with CUDA backend + # Lower with CUDA backend (per-method partitioners to avoid so_blob collision) print("Lowering to ExecuTorch with CUDA...") - compile_specs = [CudaBackend.generate_method_name_compile_spec("forward")] + + num_fla = sum(1 for t in config.layer_types if t == "linear_attention") + num_attn = sum(1 for t in config.layer_types if t == "full_attention") + conv_dim = ( + config.linear_num_key_heads * config.linear_key_head_dim * 2 + + config.linear_num_value_heads * config.linear_value_head_dim + ) + metadata = { "get_max_seq_len": config.max_seq_len, "get_vocab_size": config.vocab_size, @@ -400,10 +440,27 @@ def export_and_lower(model, config, args): "use_kv_cache": True, "use_sdpa_with_kv_cache": False, "enable_dynamic_shape": True, + # State shape metadata for C++ runner + "get_num_fla_layers": num_fla, + "get_num_attn_layers": num_attn, + "get_conv_dim": conv_dim, + "get_conv_kernel_size": config.linear_conv_kernel_dim, + "get_num_v_heads": config.linear_num_value_heads, + "get_head_k_dim": config.linear_key_head_dim, + "get_head_v_dim": config.linear_value_head_dim, + "get_n_kv_heads": config.num_kv_heads, + "get_head_dim": config.head_dim, } et_prog = to_edge_transform_and_lower( - exported, - partitioner=[CudaPartitioner(compile_specs)], + {"forward": decode_ep, "prefill": prefill_ep}, + partitioner={ + "forward": [CudaPartitioner( + [CudaBackend.generate_method_name_compile_spec("forward")] + )], + "prefill": [CudaPartitioner( + [CudaBackend.generate_method_name_compile_spec("prefill")] + )], + }, compile_config=EdgeCompileConfig( _check_ir_validity=False, _skip_dim_order=True, diff --git a/examples/models/qwen3_5_moe/inference.py b/examples/models/qwen3_5_moe/inference.py index ce9de9230af..3625b6edbcf 100644 --- a/examples/models/qwen3_5_moe/inference.py +++ b/examples/models/qwen3_5_moe/inference.py @@ -71,25 +71,34 @@ def _move_to_cuda(model, config): def generate( - model, tokenizer, prompt, max_new_tokens=128, temperature=0.0, eos_token_ids=None + model, config, tokenizer, prompt, max_new_tokens=128, temperature=0.0, eos_token_ids=None ): - """Generate text autoregressively with KV cache. + """Generate text autoregressively with explicit state passing. Prefills one token at a time (the chunk_gated_delta_rule kernel's chunked path has numerical issues with T>1 in eager mode; token-by-token uses the stable recurrent path). """ + from executorch.examples.models.qwen3_5_moe.model import Qwen35MoE + if eos_token_ids is None: eos_token_ids = set() input_ids = tokenizer.encode(prompt).ids + # Initialize state tensors + conv_states, recurrent_states, k_caches, v_caches = ( + Qwen35MoE.make_initial_state(config, dtype=torch.bfloat16, device="cuda") + ) + # Prefill: one token at a time with torch.no_grad(): for i, tok_id in enumerate(input_ids): tok = torch.tensor([[tok_id]], dtype=torch.long, device="cuda") pos = torch.tensor([i], dtype=torch.long, device="cuda") - logits = model(tok, pos) + logits, conv_states, recurrent_states, k_caches, v_caches = model( + tok, pos, conv_states, recurrent_states, k_caches, v_caches + ) # Sample first generated token next_token = _sample(logits[:, -1, :], temperature) @@ -100,7 +109,10 @@ def generate( with torch.no_grad(): for i in range(max_new_tokens - 1): pos = torch.tensor([seq_len + i], device="cuda") - logits = model(next_token.unsqueeze(0), pos) + logits, conv_states, recurrent_states, k_caches, v_caches = model( + next_token.unsqueeze(0), pos, + conv_states, recurrent_states, k_caches, v_caches + ) next_token = _sample(logits[:, -1, :], temperature) tok_id = next_token.item() generated.append(tok_id) @@ -181,6 +193,7 @@ def main(): t0 = time.perf_counter() output = generate( model, + config, tokenizer, args.prompt, max_new_tokens=args.max_new_tokens, diff --git a/examples/models/qwen3_5_moe/main.cpp b/examples/models/qwen3_5_moe/main.cpp index 266d0e65419..1b8459e046e 100644 --- a/examples/models/qwen3_5_moe/main.cpp +++ b/examples/models/qwen3_5_moe/main.cpp @@ -8,11 +8,17 @@ #include -#include +#include +#include +#include #include +#include +#include #include #include +#include +#include #include #include @@ -24,6 +30,47 @@ DEFINE_double(temperature, 0.8, "Sampling temperature (0 = greedy)."); DEFINE_int32(max_new_tokens, 128, "Maximum tokens to generate."); namespace llm = ::executorch::extension::llm; +using ::executorch::extension::Module; +using ::executorch::extension::from_blob; +using ::executorch::extension::TensorPtr; +using ::executorch::runtime::EValue; +using ::executorch::runtime::BackendOptions; +using ::executorch::runtime::Error; +using ::executorch::runtime::LoadBackendOptionsMap; + +using SizesType = executorch::aten::SizesType; + +// Helper to create a zero-initialized state tensor +static TensorPtr make_state( + std::vector shape, + executorch::aten::ScalarType dtype = executorch::aten::ScalarType::BFloat16) { + int64_t numel = 1; + for (auto s : shape) numel *= s; + size_t nbytes = numel * executorch::runtime::elementSize(dtype); + auto* data = calloc(1, nbytes); + return from_blob( + data, + shape, + dtype, + [](void* p) { free(p); }); +} + +// Copy logits from GPU to a CPU buffer for sampling. +// With skip_copy_output_to_cpu_for_method, all outputs stay on GPU. +// We only need logits on CPU; state tensors stay on GPU for zero-copy reuse. +static TensorPtr copy_logits_to_cpu( + executorch::aten::Tensor& gpu_logits, + std::vector& cpu_buffer) { + size_t nbytes = gpu_logits.nbytes(); + cpu_buffer.resize(nbytes); + cudaMemcpy(cpu_buffer.data(), gpu_logits.const_data_ptr(), + nbytes, cudaMemcpyDeviceToHost); + auto sizes = gpu_logits.sizes(); + return from_blob( + cpu_buffer.data(), + std::vector(sizes.begin(), sizes.end()), + gpu_logits.scalar_type()); +} int main(int argc, char** argv) { gflags::ParseCommandLineFlags(&argc, &argv, true); @@ -37,11 +84,6 @@ int main(int argc, char** argv) { return 1; } - std::vector data_files; - if (!FLAGS_data_path.empty()) { - data_files.push_back(FLAGS_data_path); - } - // Load tokenizer auto tokenizer = std::make_unique(); auto tok_status = tokenizer->load(FLAGS_tokenizer_path); @@ -53,25 +95,221 @@ int main(int argc, char** argv) { return 1; } - // Create LLM runner - auto runner = llm::create_text_llm_runner( - FLAGS_model_path, std::move(tokenizer), data_files, FLAGS_temperature); + // Create Module + std::vector data_files; + if (!FLAGS_data_path.empty()) { + data_files.push_back(FLAGS_data_path); + } + auto module = std::make_unique(FLAGS_model_path, data_files); + + // Get metadata + auto metadata_result = llm::get_llm_metadata(tokenizer.get(), module.get()); + if (metadata_result.error() != Error::Ok) { + ET_LOG(Error, "Failed to get metadata from model"); + return 1; + } + auto metadata = metadata_result.get(); + int64_t max_seq_len = metadata.at("get_max_seq_len"); + + // Read custom state-shape metadata via constant methods + auto read_meta = [&](const char* name) -> int64_t { + auto result = module->execute(name); + if (result.error() != Error::Ok) { + ET_LOG(Error, "Failed to read metadata: %s", name); + return -1; + } + return result.get()[0].toInt(); + }; + int64_t num_fla = read_meta("get_num_fla_layers"); + int64_t num_attn = read_meta("get_num_attn_layers"); + int64_t conv_dim = read_meta("get_conv_dim"); + int64_t conv_ks = read_meta("get_conv_kernel_size"); + int64_t num_v_heads = read_meta("get_num_v_heads"); + int64_t head_k_dim = read_meta("get_head_k_dim"); + int64_t head_v_dim = read_meta("get_head_v_dim"); + int64_t n_kv_heads = read_meta("get_n_kv_heads"); + int64_t head_dim = read_meta("get_head_dim"); + + printf( + "Model: max_seq=%ld, fla_layers=%ld, attn_layers=%ld\n", + max_seq_len, + num_fla, + num_attn); - if (runner == nullptr) { - ET_LOG(Error, "Failed to create runner"); + // Allocate initial state tensors (zero-initialized) + auto S = [](int64_t v) -> SizesType { return static_cast(v); }; + auto conv_states = make_state( + {S(num_fla), 1, S(conv_dim), S(conv_ks)}); + auto recurrent_states = make_state( + {S(num_fla), 1, S(num_v_heads), S(head_k_dim), S(head_v_dim)}); + auto k_caches = make_state( + {S(num_attn), 1, S(n_kv_heads), S(max_seq_len), S(head_dim)}); + auto v_caches = make_state( + {S(num_attn), 1, S(n_kv_heads), S(max_seq_len), S(head_dim)}); + + // Configure CUDA backend: keep outputs on GPU, use shared CUDA stream + BackendOptions<2> cuda_opts; + cuda_opts.set_option("skip_copy_output_to_cpu_for_method", "prefill,forward"); + cuda_opts.set_option("use_shared_cuda_stream", true); + + LoadBackendOptionsMap backend_options; + backend_options.set_options("CudaBackend", cuda_opts.view()); + + // Load both methods with backend options + printf("Loading prefill method...\n"); + auto err = module->load_method("prefill", nullptr, nullptr, &backend_options); + if (err != Error::Ok) { + ET_LOG(Error, "Failed to load prefill method"); + return 1; + } + printf("Loading forward (decode) method...\n"); + err = module->load_method("forward", nullptr, nullptr, &backend_options); + if (err != Error::Ok) { + ET_LOG(Error, "Failed to load forward method"); return 1; } - // Generate - llm::GenerationConfig config; - config.temperature = FLAGS_temperature; - config.max_new_tokens = FLAGS_max_new_tokens; + // Get EOS ids + auto eos_ids = llm::get_eos_ids(tokenizer.get(), module.get()); - auto error = runner->generate(FLAGS_prompt.c_str(), config); - if (error != executorch::runtime::Error::Ok) { - ET_LOG(Error, "Generation failed"); + // Encode prompt + auto encode_result = tokenizer->encode(FLAGS_prompt); + if (!encode_result.ok()) { + ET_LOG(Error, "Failed to encode prompt"); return 1; } + auto prompt_tokens = std::move(*encode_result); + int64_t num_prompt_tokens = prompt_tokens.size(); + printf("Prompt tokens: %ld\n", num_prompt_tokens); + + // --------------------------------------------------------------- + // Prefill — process all prompt tokens at once + // --------------------------------------------------------------- + std::vector pos_data(num_prompt_tokens); + for (int64_t i = 0; i < num_prompt_tokens; i++) { + pos_data[i] = i; + } + + std::vector token_data(prompt_tokens.begin(), prompt_tokens.end()); + auto tokens_tensor = from_blob( + token_data.data(), + {1, S(num_prompt_tokens)}, + executorch::aten::ScalarType::Long); + auto pos_tensor = from_blob( + pos_data.data(), + {S(num_prompt_tokens)}, + executorch::aten::ScalarType::Long); + + std::vector prefill_inputs; + prefill_inputs.push_back(tokens_tensor); + prefill_inputs.push_back(pos_tensor); + prefill_inputs.push_back(conv_states); + prefill_inputs.push_back(recurrent_states); + prefill_inputs.push_back(k_caches); + prefill_inputs.push_back(v_caches); + + auto prefill_result = module->execute("prefill", prefill_inputs); + if (prefill_result.error() != Error::Ok) { + ET_LOG(Error, "Prefill failed"); + return 1; + } + auto& prefill_outputs = prefill_result.get(); + + // Copy logits from GPU to CPU for sampling; state stays on GPU + auto gpu_logits = prefill_outputs[0].toTensor(); + std::vector logits_cpu_buf; + auto logits_ptr = copy_logits_to_cpu(gpu_logits, logits_cpu_buf); + auto out_conv_states = prefill_outputs[1].toTensor(); + auto out_recurrent_states = prefill_outputs[2].toTensor(); + auto out_k_caches = prefill_outputs[3].toTensor(); + auto out_v_caches = prefill_outputs[4].toTensor(); + + uint64_t cur_token = llm::logits_to_token(*logits_ptr, FLAGS_temperature); + printf("Prefill done, first token: %lu\n", cur_token); + + // --------------------------------------------------------------- + // Decode — generate tokens one at a time + // --------------------------------------------------------------- + llm::Stats stats; + int64_t pos = num_prompt_tokens; + uint64_t prev_token; + + std::vector decode_token_data = {static_cast(cur_token)}; + std::vector decode_pos_data = {pos}; + auto decode_tokens = from_blob( + decode_token_data.data(), {1, 1}, executorch::aten::ScalarType::Long); + auto decode_pos = from_blob( + decode_pos_data.data(), {1}, executorch::aten::ScalarType::Long); + + // State as EValues — pass GPU output directly as next input (zero-copy) + EValue ev_conv(out_conv_states); + EValue ev_rec(out_recurrent_states); + EValue ev_k(out_k_caches); + EValue ev_v(out_v_caches); + + auto gen_start = std::chrono::steady_clock::now(); + + for (int32_t step = 0; step < FLAGS_max_new_tokens; step++) { + decode_token_data[0] = static_cast(cur_token); + decode_pos_data[0] = pos; + + std::vector decode_inputs; + decode_inputs.push_back(EValue(decode_tokens)); + decode_inputs.push_back(EValue(decode_pos)); + decode_inputs.push_back(ev_conv); + decode_inputs.push_back(ev_rec); + decode_inputs.push_back(ev_k); + decode_inputs.push_back(ev_v); + + auto decode_result = module->execute("forward", decode_inputs); + if (decode_result.error() != Error::Ok) { + ET_LOG(Error, "Decode step %d failed", step); + return 1; + } + auto& decode_outputs = decode_result.get(); + + // Copy logits from GPU to CPU; state stays on GPU + auto gpu_step_logits = decode_outputs[0].toTensor(); + auto step_logits_ptr = copy_logits_to_cpu(gpu_step_logits, logits_cpu_buf); + + // Pass state outputs directly as next step's inputs (zero-copy on GPU) + ev_conv = decode_outputs[1]; + ev_rec = decode_outputs[2]; + ev_k = decode_outputs[3]; + ev_v = decode_outputs[4]; + + prev_token = cur_token; + stats.on_sampling_begin(); + cur_token = llm::logits_to_token(*step_logits_ptr, FLAGS_temperature); + stats.on_sampling_end(); + + pos++; + + auto decode_str = tokenizer->decode(prev_token, cur_token); + if (decode_str.ok()) { + printf("%s", decode_str->c_str()); + fflush(stdout); + } + + if (eos_ids.find(cur_token) != eos_ids.end()) { + printf("\n"); + break; + } + } + + auto gen_end = std::chrono::steady_clock::now(); + + printf("\n"); + int64_t num_generated = pos - num_prompt_tokens; + double gen_ms = std::chrono::duration( + gen_end - gen_start) + .count(); + printf( + "Generated %ld tokens in %.1f ms (%.1f tok/s)\n", + num_generated, + gen_ms, + num_generated * 1000.0 / gen_ms); + printf("Prompt tokens: %ld\n", num_prompt_tokens); return 0; } diff --git a/examples/models/qwen3_5_moe/model.py b/examples/models/qwen3_5_moe/model.py index 1e2abba2b9f..7a5de092a2a 100644 --- a/examples/models/qwen3_5_moe/model.py +++ b/examples/models/qwen3_5_moe/model.py @@ -177,29 +177,10 @@ def _apply_rotary(x, cos, sin): return torch.cat([x1 * cos - x2 * sin, x2 * cos + x1 * sin], dim=-1) -# --------------------------------------------------------------------------- -# KV Cache - - -class KVCache(nn.Module): - - def __init__(self, n_kv_heads, head_dim, max_seq_len): - super().__init__() - self.register_buffer( - "k_cache", torch.zeros(1, n_kv_heads, max_seq_len, head_dim) - ) - self.register_buffer( - "v_cache", torch.zeros(1, n_kv_heads, max_seq_len, head_dim) - ) - - def update(self, input_pos, k_val, v_val): - self.k_cache[:, :, input_pos] = k_val - self.v_cache[:, :, input_pos] = v_val - return self.k_cache, self.v_cache - - # --------------------------------------------------------------------------- # Full Attention with output gate, QK-norm, partial RoPE +# KV cache state is passed as explicit function arguments (not registered buffers) +# to enable cross-method state sharing in dual-method PTE. class FullAttention(nn.Module): @@ -228,14 +209,12 @@ def __init__(self, config): self.head_dim, config.partial_rotary_factor, config.rope_theta ) - self.kv_cache = KVCache(self.n_kv_heads, self.head_dim, config.max_seq_len) - mask = torch.tril( torch.ones(config.max_seq_len, config.max_seq_len, dtype=torch.bool) ) self.register_buffer("mask", mask) - def forward(self, x, input_pos): + def forward(self, x, input_pos, k_cache, v_cache): B, T, _ = x.size() dtype = x.dtype @@ -264,13 +243,16 @@ def forward(self, x, input_pos): k = k.to(dtype).transpose(1, 2) v = v.transpose(1, 2) - # KV cache - k, v = self.kv_cache.update(input_pos, k, v) + # Functional KV cache update (clone + scatter avoids input mutation) + new_k_cache = k_cache.clone() + new_k_cache[:, :, input_pos] = k + new_v_cache = v_cache.clone() + new_v_cache[:, :, input_pos] = v # SDPA with GQA — kernel maps Q heads to KV heads internally attn_mask = self.mask[input_pos].unsqueeze(0).unsqueeze(0) y = F.scaled_dot_product_attention( - q, k, v, attn_mask=attn_mask, enable_gqa=True + q, new_k_cache, new_v_cache, attn_mask=attn_mask, enable_gqa=True ) y = y.transpose(1, 2).contiguous().view(B, T, -1) @@ -279,7 +261,7 @@ def forward(self, x, input_pos): gate = gate.reshape(B, T, -1) y = y * torch.sigmoid(gate) - return self.o_proj(y) + return self.o_proj(y), new_k_cache, new_v_cache # --------------------------------------------------------------------------- @@ -324,23 +306,20 @@ def __init__(self, config): self.norm = RMSNormGated(self.head_v_dim, eps=config.rms_norm_eps) self.out_proj = nn.Linear(self.value_dim, config.hidden_size, bias=False) - # State buffers - self.register_buffer( - "conv_state", torch.zeros(1, self.conv_dim, config.linear_conv_kernel_dim) - ) - self.register_buffer( - "recurrent_state", - torch.zeros(1, self.num_v_heads, self.head_k_dim, self.head_v_dim), - ) + # State is passed as explicit args, not registered buffers. + # Shapes for reference: + # conv_state: [1, conv_dim, conv_kernel_size] + # recurrent_state: [1, num_v_heads, head_k_dim, head_v_dim] - def forward(self, x, input_pos): + def _prepare_fla_inputs(self, x, input_pos, conv_state, recurrent_state): + """Shared preprocessing: projection, conv1d, split, normalize, gating.""" B, T, _ = x.size() - # Reset state at position 0 - reset = (input_pos[0] == 0).to(self.conv_state.dtype) + # Reset state at position 0 (functional — no in-place mutation) + reset = (input_pos[0] == 0).to(conv_state.dtype) keep = 1.0 - reset - self.conv_state[:B].mul_(keep) - self.recurrent_state[:B].mul_(keep) + conv_state = conv_state * keep + recurrent_state = recurrent_state * keep # Fused projection: split into qkv, z, b, a proj = self.in_proj(x) @@ -354,9 +333,8 @@ def forward(self, x, input_pos): # Causal depthwise conv1d with state (manual, avoids conv1d→conv2d decomposition) qkv_t = mixed_qkv.transpose(1, 2) - conv_input = torch.cat([self.conv_state[:B], qkv_t], dim=-1) - with torch.no_grad(): - self.conv_state[:B].copy_(conv_input[:, :, -self.conv_kernel_size :]) + conv_input = torch.cat([conv_state, qkv_t], dim=-1) + new_conv_state = conv_input[:, :, -self.conv_kernel_size :] w = self.conv1d.weight.squeeze(1).float() # [C, 1, K] -> [C, K] T_conv = conv_input.shape[-1] - self.conv_kernel_size + 1 acc = torch.zeros( @@ -390,22 +368,64 @@ def forward(self, x, input_pos): beta = b.sigmoid() g = -self.A_log.float().exp() * F.softplus(a.float() + self.dt_bias) - # FLA Triton kernel (returns final_state separately, does not mutate initial_state) - output, state = torch.ops.triton.chunk_gated_delta_rule( - q, k, v, g, beta, self.recurrent_state[:B] - ) + return q, k, v, g, beta, z, B, T, new_conv_state, recurrent_state - with torch.no_grad(): - self.recurrent_state[:B].copy_(state) - - # Output: RMSNorm(output) * silu(z) + def _fla_output(self, output, z, B, T): + """Shared postprocessing: RMSNorm(output) * silu(z) + out_proj.""" output = output.reshape(-1, self.head_v_dim) z = z.reshape(-1, self.head_v_dim) output = self.norm(output, z) output = output.reshape(B, T, -1) - return self.out_proj(output) + def forward(self, x, input_pos, conv_state, recurrent_state): + """GatedDeltaNet with runtime dispatch. + + When traced with T=1: uses native PyTorch recurrent delta rule + (AOTI fuses with surrounding ops for maximum decode throughput). + When traced with T>1: uses chunked FLA via triton_op. + + Returns (output, new_conv_state, new_recurrent_state). + """ + q, k, v, g, beta, z, B, T, new_conv_state, recurrent_state = \ + self._prepare_fla_inputs(x, input_pos, conv_state, recurrent_state) + + if T == 1: + # Native recurrent delta rule — AOTI fuses with surrounding ops + scale = self.head_k_dim ** -0.5 + + q_s = q[:, 0].float() # [B, H, K] + k_s = k[:, 0].float() # [B, H, K] + v_s = v[:, 0].float() # [B, H, V] + g_s = g[:, 0] # [B, H] + beta_s = beta[:, 0] # [B, H] + + state = recurrent_state.float() # [B, H, K, V] + + # Decay state by exp(g) + decay = torch.exp(g_s).unsqueeze(-1).unsqueeze(-1) # [B, H, 1, 1] + state = state * decay + + # Sk = state @ k (project state by key) + Sk = torch.einsum('bhkv,bhk->bhv', state, k_s) + + # Delta rule state update + delta = beta_s.unsqueeze(-1) * (v_s - Sk) # [B, H, V] + state = state + torch.einsum('bhk,bhv->bhkv', k_s, delta) + + # Output = state @ q * scale + output = torch.einsum('bhkv,bhk->bhv', state, q_s) * scale + output = output.unsqueeze(1).to(q.dtype) # [B, 1, H, V] + + new_recurrent_state = state.to(recurrent_state.dtype) + else: + # Chunked FLA triton_op for prefill + output, new_recurrent_state = torch.ops.triton.chunk_gated_delta_rule( + q, k, v, g, beta, recurrent_state + ) + + return self._fla_output(output, z, B, T), new_conv_state, new_recurrent_state + # --------------------------------------------------------------------------- # MoE: expert weights for fused MoE Triton kernel @@ -523,10 +543,11 @@ def __init__(self, config, layer_idx): self.mlp = SparseMoE(config) - def forward(self, x, input_pos): - x = x + self.attn(self.ln_1(x), input_pos) + def forward(self, x, input_pos, *layer_state): + attn_out, *new_state = self.attn(self.ln_1(x), input_pos, *layer_state) + x = x + attn_out x = x + self.mlp(self.ln_2(x)) - return x + return (x, *new_state) class Qwen35MoE(nn.Module): @@ -542,13 +563,77 @@ def __init__(self, config): self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False) def forward( - self, tokens: torch.LongTensor, input_pos: torch.LongTensor - ) -> torch.Tensor: + self, + tokens: torch.LongTensor, + input_pos: torch.LongTensor, + conv_states: torch.Tensor, + recurrent_states: torch.Tensor, + k_caches: torch.Tensor, + v_caches: torch.Tensor, + ) -> tuple: + """Forward with explicit state I/O for dual-method PTE. + + State tensors are packed by type: + conv_states: [num_fla, 1, conv_dim, conv_kernel_size] + recurrent_states: [num_fla, 1, num_v_heads, head_k_dim, head_v_dim] + k_caches: [num_attn, 1, n_kv_heads, max_seq_len, head_dim] + v_caches: [num_attn, 1, n_kv_heads, max_seq_len, head_dim] + + Returns (logits, conv_states, recurrent_states, k_caches, v_caches). + """ x = self.embed_tokens(tokens) + fla_idx = 0 + attn_idx = 0 for layer in self.layers: - x = layer(x, input_pos) + if layer.layer_type == "full_attention": + x, new_k, new_v = layer( + x, input_pos, k_caches[attn_idx], v_caches[attn_idx] + ) + k_caches = torch.select_scatter(k_caches, new_k, 0, attn_idx) + v_caches = torch.select_scatter(v_caches, new_v, 0, attn_idx) + attn_idx += 1 + else: + x, new_conv, new_rec = layer( + x, input_pos, conv_states[fla_idx], recurrent_states[fla_idx] + ) + conv_states = torch.select_scatter(conv_states, new_conv, 0, fla_idx) + recurrent_states = torch.select_scatter( + recurrent_states, new_rec, 0, fla_idx + ) + fla_idx += 1 x = self.norm(x) - return self.lm_head(x) + logits = self.lm_head(x) + return logits, conv_states, recurrent_states, k_caches, v_caches + + @staticmethod + def make_initial_state(config, dtype=torch.bfloat16, device="cpu"): + """Create zero-initialized state tensors for export/inference.""" + num_fla = sum(1 for t in config.layer_types if t == "linear_attention") + num_attn = sum(1 for t in config.layer_types if t == "full_attention") + + conv_dim = ( + config.linear_num_key_heads * config.linear_key_head_dim * 2 + + config.linear_num_value_heads * config.linear_value_head_dim + ) + + conv_states = torch.zeros( + num_fla, 1, conv_dim, config.linear_conv_kernel_dim, + dtype=dtype, device=device, + ) + recurrent_states = torch.zeros( + num_fla, 1, config.linear_num_value_heads, + config.linear_key_head_dim, config.linear_value_head_dim, + dtype=dtype, device=device, + ) + k_caches = torch.zeros( + num_attn, 1, config.num_kv_heads, config.max_seq_len, config.head_dim, + dtype=dtype, device=device, + ) + v_caches = torch.zeros( + num_attn, 1, config.num_kv_heads, config.max_seq_len, config.head_dim, + dtype=dtype, device=device, + ) + return conv_states, recurrent_states, k_caches, v_caches @staticmethod def from_hf_checkpoint(model_dir, max_seq_len=4096): @@ -575,9 +660,6 @@ def from_hf_checkpoint(model_dir, max_seq_len=4096): # Validate runtime_prefixes = ( "lm_head.weight", - ".kv_cache.", - ".conv_state", - ".recurrent_state", ".mask", ".inv_freq", ) From 63c162ecc6377a298072656c51d10566367fa287 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Sun, 5 Apr 2026 23:27:41 -0700 Subject: [PATCH 10/12] Use share_mutable_buffers to eliminate select_scatter overhead MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Revert from explicit state passing back to registered buffers with in-place updates (KVCache, conv_state, recurrent_state). Export with share_mutable_buffers=True so both prefill and forward methods share mutable state via mem_id=2. C++ runner uses share_memory_arenas=true and only passes (tokens, input_pos) — no CUDA runtime dependency. Results: 84.5 tok/s (up from 77.4), 0 select_scatter ops in profile, 65 D2H memcpy (logits only). --- backends/cuda/runtime/cuda_backend.cpp | 21 --- examples/models/qwen3_5_moe/CMakeLists.txt | 2 +- examples/models/qwen3_5_moe/export.py | 50 ++---- examples/models/qwen3_5_moe/inference.py | 28 +-- examples/models/qwen3_5_moe/main.cpp | 168 +++++------------- examples/models/qwen3_5_moe/model.py | 196 ++++++++------------- 6 files changed, 138 insertions(+), 327 deletions(-) diff --git a/backends/cuda/runtime/cuda_backend.cpp b/backends/cuda/runtime/cuda_backend.cpp index f25629cfaa1..c94d56b796f 100644 --- a/backends/cuda/runtime/cuda_backend.cpp +++ b/backends/cuda/runtime/cuda_backend.cpp @@ -262,27 +262,6 @@ class ET_EXPERIMENTAL CudaBackend final FreeableBuffer* processed, // This will be a empty buffer ArrayRef compile_specs // This will be my empty list ) const override { - // Apply runtime_specs from LoadBackendOptionsMap (if provided) - auto runtime_specs = context.runtime_specs(); - if (runtime_specs.size() > 0) { - for (size_t i = 0; i < runtime_specs.size(); ++i) { - const auto& opt = runtime_specs[i]; - if (std::strcmp(opt.key, kSkipCopyOutputToCpuForMethod) == 0) { - if (auto* val = - std::get_if>( - &opt.value)) { - const_cast(this)->set_skip_copy_method(*val); - } - } else if (std::strcmp(opt.key, kUseSharedCudaStream) == 0) { - if (auto* val = std::get_if(&opt.value)) { - if (*val) { - const_cast(this)->create_shared_cuda_stream(); - } - } - } - } - } - std::string method_name; for (const CompileSpec& spec : compile_specs) { if (std::strcmp(spec.key, "method_name") == 0) { diff --git a/examples/models/qwen3_5_moe/CMakeLists.txt b/examples/models/qwen3_5_moe/CMakeLists.txt index 1961a49562b..6e9e52eef62 100644 --- a/examples/models/qwen3_5_moe/CMakeLists.txt +++ b/examples/models/qwen3_5_moe/CMakeLists.txt @@ -44,7 +44,7 @@ list( # CUDA backend (required) find_package(CUDAToolkit REQUIRED) -list(APPEND link_libraries aoti_cuda_backend CUDA::cudart) +list(APPEND link_libraries aoti_cuda_backend) executorch_target_link_options_shared_lib(aoti_cuda_backend) # Tokenizer diff --git a/examples/models/qwen3_5_moe/export.py b/examples/models/qwen3_5_moe/export.py index 3c92f7d7634..e4c86da47f3 100644 --- a/examples/models/qwen3_5_moe/export.py +++ b/examples/models/qwen3_5_moe/export.py @@ -109,6 +109,9 @@ def load_prequantized_model(prequantized_dir, max_seq_len=4096): runtime_prefixes = ( ".mask", ".inv_freq", + ".kv_cache.", + ".conv_state", + ".recurrent_state", ) expected_missing = {k for k in missing if any(p in k for p in runtime_prefixes)} weight_missing = set(missing) - expected_missing @@ -310,7 +313,8 @@ def _materialize_buffers(model, config): Replaces meta buffers with real tensors on CPU, recomputes RoPE inv_freq and causal masks. State buffers (KV cache, conv/recurrent - state) are no longer registered buffers — they are explicit function args. + state) are zero-initialized registered buffers that will be shared + across methods via share_mutable_buffers. """ # Masks stay bool, inv_freq stays float32. for fqn, buf in list(model.named_buffers()): @@ -359,8 +363,9 @@ def export_and_lower(model, config, args): - "prefill": prefill path (T>=2), uses chunked FLA triton_op with dynamic sequence length. - Both methods take explicit state tensors (conv_states, recurrent_states, - k_caches, v_caches) as inputs and return updated state as outputs. + Both methods share mutable state buffers (KV cache, conv_state, + recurrent_state) via share_mutable_buffers=True. The model uses + registered buffers with in-place updates — no state in/out args. """ import torch._inductor.config as inductor_config @@ -381,10 +386,6 @@ def export_and_lower(model, config, args): # -O0 compiles ~8x faster than -O1 with no measurable runtime impact. inductor_config.aot_inductor.compile_wrapper_opt_level = "O0" - # Create initial state tensors - conv_states, recurrent_states, k_caches, v_caches = \ - Qwen35MoE.make_initial_state(config) - # --- Decode method (T=1, static shape) --- print("Exporting decode method (forward)...") decode_tokens = torch.tensor([[0]], dtype=torch.long) @@ -392,8 +393,7 @@ def export_and_lower(model, config, args): with torch.no_grad(): decode_ep = export( model, - (decode_tokens, decode_pos, - conv_states, recurrent_states, k_caches, v_caches), + (decode_tokens, decode_pos), strict=True, ) print("Decode export successful!") @@ -403,21 +403,14 @@ def export_and_lower(model, config, args): prefill_tokens = torch.tensor([[0, 1]], dtype=torch.long) prefill_pos = torch.tensor([0, 1], dtype=torch.long) seq_dim = Dim("seq_len", min=2, max=config.max_seq_len - 1) - # Dynamic shapes: only tokens dim 1 and pos dim 0 are dynamic; - # state tensors have static shapes. prefill_dynamic_shapes = ( {1: seq_dim}, # tokens {0: seq_dim}, # input_pos - None, # conv_states - None, # recurrent_states - None, # k_caches - None, # v_caches ) with torch.no_grad(): prefill_ep = export( model, - (prefill_tokens, prefill_pos, - conv_states, recurrent_states, k_caches, v_caches), + (prefill_tokens, prefill_pos), dynamic_shapes=prefill_dynamic_shapes, strict=True, ) @@ -426,13 +419,6 @@ def export_and_lower(model, config, args): # Lower with CUDA backend (per-method partitioners to avoid so_blob collision) print("Lowering to ExecuTorch with CUDA...") - num_fla = sum(1 for t in config.layer_types if t == "linear_attention") - num_attn = sum(1 for t in config.layer_types if t == "full_attention") - conv_dim = ( - config.linear_num_key_heads * config.linear_key_head_dim * 2 - + config.linear_num_value_heads * config.linear_value_head_dim - ) - metadata = { "get_max_seq_len": config.max_seq_len, "get_vocab_size": config.vocab_size, @@ -440,16 +426,6 @@ def export_and_lower(model, config, args): "use_kv_cache": True, "use_sdpa_with_kv_cache": False, "enable_dynamic_shape": True, - # State shape metadata for C++ runner - "get_num_fla_layers": num_fla, - "get_num_attn_layers": num_attn, - "get_conv_dim": conv_dim, - "get_conv_kernel_size": config.linear_conv_kernel_dim, - "get_num_v_heads": config.linear_num_value_heads, - "get_head_k_dim": config.linear_key_head_dim, - "get_head_v_dim": config.linear_value_head_dim, - "get_n_kv_heads": config.num_kv_heads, - "get_head_dim": config.head_dim, } et_prog = to_edge_transform_and_lower( {"forward": decode_ep, "prefill": prefill_ep}, @@ -471,7 +447,11 @@ def export_and_lower(model, config, args): config=ExecutorchBackendConfig( extract_delegate_segments=True, do_quant_fusion_and_const_prop=True, - memory_planning_pass=MemoryPlanningPass(alloc_graph_input=False), + memory_planning_pass=MemoryPlanningPass( + alloc_graph_input=False, + share_mutable_buffers=True, + ), + emit_mutable_buffer_names=True, ), ) diff --git a/examples/models/qwen3_5_moe/inference.py b/examples/models/qwen3_5_moe/inference.py index 3625b6edbcf..b1450ea543d 100644 --- a/examples/models/qwen3_5_moe/inference.py +++ b/examples/models/qwen3_5_moe/inference.py @@ -71,34 +71,24 @@ def _move_to_cuda(model, config): def generate( - model, config, tokenizer, prompt, max_new_tokens=128, temperature=0.0, eos_token_ids=None + model, tokenizer, prompt, max_new_tokens=128, temperature=0.0, eos_token_ids=None ): - """Generate text autoregressively with explicit state passing. + """Generate text autoregressively. - Prefills one token at a time (the chunk_gated_delta_rule kernel's chunked - path has numerical issues with T>1 in eager mode; token-by-token uses the - stable recurrent path). + State (KV cache, conv_state, recurrent_state) is managed internally + via registered buffers — the model signature is just (tokens, input_pos). """ - from executorch.examples.models.qwen3_5_moe.model import Qwen35MoE - if eos_token_ids is None: eos_token_ids = set() input_ids = tokenizer.encode(prompt).ids - # Initialize state tensors - conv_states, recurrent_states, k_caches, v_caches = ( - Qwen35MoE.make_initial_state(config, dtype=torch.bfloat16, device="cuda") - ) - - # Prefill: one token at a time + # Prefill: one token at a time (recurrent path is stable for T=1) with torch.no_grad(): for i, tok_id in enumerate(input_ids): tok = torch.tensor([[tok_id]], dtype=torch.long, device="cuda") pos = torch.tensor([i], dtype=torch.long, device="cuda") - logits, conv_states, recurrent_states, k_caches, v_caches = model( - tok, pos, conv_states, recurrent_states, k_caches, v_caches - ) + logits = model(tok, pos) # Sample first generated token next_token = _sample(logits[:, -1, :], temperature) @@ -109,10 +99,7 @@ def generate( with torch.no_grad(): for i in range(max_new_tokens - 1): pos = torch.tensor([seq_len + i], device="cuda") - logits, conv_states, recurrent_states, k_caches, v_caches = model( - next_token.unsqueeze(0), pos, - conv_states, recurrent_states, k_caches, v_caches - ) + logits = model(next_token.unsqueeze(0), pos) next_token = _sample(logits[:, -1, :], temperature) tok_id = next_token.item() generated.append(tok_id) @@ -193,7 +180,6 @@ def main(): t0 = time.perf_counter() output = generate( model, - config, tokenizer, args.prompt, max_new_tokens=args.max_new_tokens, diff --git a/examples/models/qwen3_5_moe/main.cpp b/examples/models/qwen3_5_moe/main.cpp index 1b8459e046e..133cbe281aa 100644 --- a/examples/models/qwen3_5_moe/main.cpp +++ b/examples/models/qwen3_5_moe/main.cpp @@ -13,12 +13,10 @@ #include #include #include -#include #include #include #include -#include #include #include @@ -34,44 +32,10 @@ using ::executorch::extension::Module; using ::executorch::extension::from_blob; using ::executorch::extension::TensorPtr; using ::executorch::runtime::EValue; -using ::executorch::runtime::BackendOptions; using ::executorch::runtime::Error; -using ::executorch::runtime::LoadBackendOptionsMap; using SizesType = executorch::aten::SizesType; -// Helper to create a zero-initialized state tensor -static TensorPtr make_state( - std::vector shape, - executorch::aten::ScalarType dtype = executorch::aten::ScalarType::BFloat16) { - int64_t numel = 1; - for (auto s : shape) numel *= s; - size_t nbytes = numel * executorch::runtime::elementSize(dtype); - auto* data = calloc(1, nbytes); - return from_blob( - data, - shape, - dtype, - [](void* p) { free(p); }); -} - -// Copy logits from GPU to a CPU buffer for sampling. -// With skip_copy_output_to_cpu_for_method, all outputs stay on GPU. -// We only need logits on CPU; state tensors stay on GPU for zero-copy reuse. -static TensorPtr copy_logits_to_cpu( - executorch::aten::Tensor& gpu_logits, - std::vector& cpu_buffer) { - size_t nbytes = gpu_logits.nbytes(); - cpu_buffer.resize(nbytes); - cudaMemcpy(cpu_buffer.data(), gpu_logits.const_data_ptr(), - nbytes, cudaMemcpyDeviceToHost); - auto sizes = gpu_logits.sizes(); - return from_blob( - cpu_buffer.data(), - std::vector(sizes.begin(), sizes.end()), - gpu_logits.scalar_type()); -} - int main(int argc, char** argv) { gflags::ParseCommandLineFlags(&argc, &argv, true); @@ -95,12 +59,20 @@ int main(int argc, char** argv) { return 1; } - // Create Module + // Create Module with share_memory_arenas=true so prefill and forward + // share mutable buffers (KV cache, conv_state, recurrent_state). std::vector data_files; if (!FLAGS_data_path.empty()) { data_files.push_back(FLAGS_data_path); } - auto module = std::make_unique(FLAGS_model_path, data_files); + auto module = std::make_unique( + FLAGS_model_path, + data_files, + Module::LoadMode::File, + /*event_tracer=*/nullptr, + /*memory_allocator=*/nullptr, + /*temp_allocator=*/nullptr, + /*share_memory_arenas=*/true); // Get metadata auto metadata_result = llm::get_llm_metadata(tokenizer.get(), module.get()); @@ -109,61 +81,16 @@ int main(int argc, char** argv) { return 1; } auto metadata = metadata_result.get(); - int64_t max_seq_len = metadata.at("get_max_seq_len"); - - // Read custom state-shape metadata via constant methods - auto read_meta = [&](const char* name) -> int64_t { - auto result = module->execute(name); - if (result.error() != Error::Ok) { - ET_LOG(Error, "Failed to read metadata: %s", name); - return -1; - } - return result.get()[0].toInt(); - }; - int64_t num_fla = read_meta("get_num_fla_layers"); - int64_t num_attn = read_meta("get_num_attn_layers"); - int64_t conv_dim = read_meta("get_conv_dim"); - int64_t conv_ks = read_meta("get_conv_kernel_size"); - int64_t num_v_heads = read_meta("get_num_v_heads"); - int64_t head_k_dim = read_meta("get_head_k_dim"); - int64_t head_v_dim = read_meta("get_head_v_dim"); - int64_t n_kv_heads = read_meta("get_n_kv_heads"); - int64_t head_dim = read_meta("get_head_dim"); - printf( - "Model: max_seq=%ld, fla_layers=%ld, attn_layers=%ld\n", - max_seq_len, - num_fla, - num_attn); + printf("Loading methods...\n"); - // Allocate initial state tensors (zero-initialized) - auto S = [](int64_t v) -> SizesType { return static_cast(v); }; - auto conv_states = make_state( - {S(num_fla), 1, S(conv_dim), S(conv_ks)}); - auto recurrent_states = make_state( - {S(num_fla), 1, S(num_v_heads), S(head_k_dim), S(head_v_dim)}); - auto k_caches = make_state( - {S(num_attn), 1, S(n_kv_heads), S(max_seq_len), S(head_dim)}); - auto v_caches = make_state( - {S(num_attn), 1, S(n_kv_heads), S(max_seq_len), S(head_dim)}); - - // Configure CUDA backend: keep outputs on GPU, use shared CUDA stream - BackendOptions<2> cuda_opts; - cuda_opts.set_option("skip_copy_output_to_cpu_for_method", "prefill,forward"); - cuda_opts.set_option("use_shared_cuda_stream", true); - - LoadBackendOptionsMap backend_options; - backend_options.set_options("CudaBackend", cuda_opts.view()); - - // Load both methods with backend options - printf("Loading prefill method...\n"); - auto err = module->load_method("prefill", nullptr, nullptr, &backend_options); + // Load both methods + auto err = module->load_method("prefill"); if (err != Error::Ok) { ET_LOG(Error, "Failed to load prefill method"); return 1; } - printf("Loading forward (decode) method...\n"); - err = module->load_method("forward", nullptr, nullptr, &backend_options); + err = module->load_method("forward"); if (err != Error::Ok) { ET_LOG(Error, "Failed to load forward method"); return 1; @@ -190,6 +117,7 @@ int main(int argc, char** argv) { pos_data[i] = i; } + auto S = [](int64_t v) -> SizesType { return static_cast(v); }; std::vector token_data(prompt_tokens.begin(), prompt_tokens.end()); auto tokens_tensor = from_blob( token_data.data(), @@ -203,29 +131,29 @@ int main(int argc, char** argv) { std::vector prefill_inputs; prefill_inputs.push_back(tokens_tensor); prefill_inputs.push_back(pos_tensor); - prefill_inputs.push_back(conv_states); - prefill_inputs.push_back(recurrent_states); - prefill_inputs.push_back(k_caches); - prefill_inputs.push_back(v_caches); + auto prefill_start = std::chrono::steady_clock::now(); auto prefill_result = module->execute("prefill", prefill_inputs); if (prefill_result.error() != Error::Ok) { ET_LOG(Error, "Prefill failed"); return 1; } auto& prefill_outputs = prefill_result.get(); + auto prefill_end = std::chrono::steady_clock::now(); - // Copy logits from GPU to CPU for sampling; state stays on GPU - auto gpu_logits = prefill_outputs[0].toTensor(); - std::vector logits_cpu_buf; - auto logits_ptr = copy_logits_to_cpu(gpu_logits, logits_cpu_buf); - auto out_conv_states = prefill_outputs[1].toTensor(); - auto out_recurrent_states = prefill_outputs[2].toTensor(); - auto out_k_caches = prefill_outputs[3].toTensor(); - auto out_v_caches = prefill_outputs[4].toTensor(); - + auto logits_tensor = prefill_outputs[0].toTensor(); + auto logits_ptr = + std::make_shared(std::move(logits_tensor)); uint64_t cur_token = llm::logits_to_token(*logits_ptr, FLAGS_temperature); - printf("Prefill done, first token: %lu\n", cur_token); + + double prefill_ms = std::chrono::duration( + prefill_end - prefill_start) + .count(); + printf( + "Prefill: %ld tokens in %.1f ms (%.1f tok/s)\n", + num_prompt_tokens, + prefill_ms, + num_prompt_tokens * 1000.0 / prefill_ms); // --------------------------------------------------------------- // Decode — generate tokens one at a time @@ -241,13 +169,7 @@ int main(int argc, char** argv) { auto decode_pos = from_blob( decode_pos_data.data(), {1}, executorch::aten::ScalarType::Long); - // State as EValues — pass GPU output directly as next input (zero-copy) - EValue ev_conv(out_conv_states); - EValue ev_rec(out_recurrent_states); - EValue ev_k(out_k_caches); - EValue ev_v(out_v_caches); - - auto gen_start = std::chrono::steady_clock::now(); + auto decode_start = std::chrono::steady_clock::now(); for (int32_t step = 0; step < FLAGS_max_new_tokens; step++) { decode_token_data[0] = static_cast(cur_token); @@ -256,10 +178,6 @@ int main(int argc, char** argv) { std::vector decode_inputs; decode_inputs.push_back(EValue(decode_tokens)); decode_inputs.push_back(EValue(decode_pos)); - decode_inputs.push_back(ev_conv); - decode_inputs.push_back(ev_rec); - decode_inputs.push_back(ev_k); - decode_inputs.push_back(ev_v); auto decode_result = module->execute("forward", decode_inputs); if (decode_result.error() != Error::Ok) { @@ -268,15 +186,9 @@ int main(int argc, char** argv) { } auto& decode_outputs = decode_result.get(); - // Copy logits from GPU to CPU; state stays on GPU - auto gpu_step_logits = decode_outputs[0].toTensor(); - auto step_logits_ptr = copy_logits_to_cpu(gpu_step_logits, logits_cpu_buf); - - // Pass state outputs directly as next step's inputs (zero-copy on GPU) - ev_conv = decode_outputs[1]; - ev_rec = decode_outputs[2]; - ev_k = decode_outputs[3]; - ev_v = decode_outputs[4]; + auto step_logits = decode_outputs[0].toTensor(); + auto step_logits_ptr = + std::make_shared(std::move(step_logits)); prev_token = cur_token; stats.on_sampling_begin(); @@ -297,18 +209,18 @@ int main(int argc, char** argv) { } } - auto gen_end = std::chrono::steady_clock::now(); + auto decode_end = std::chrono::steady_clock::now(); printf("\n"); int64_t num_generated = pos - num_prompt_tokens; - double gen_ms = std::chrono::duration( - gen_end - gen_start) - .count(); + double decode_ms = std::chrono::duration( + decode_end - decode_start) + .count(); printf( - "Generated %ld tokens in %.1f ms (%.1f tok/s)\n", + "Decode: %ld tokens in %.1f ms (%.1f tok/s)\n", num_generated, - gen_ms, - num_generated * 1000.0 / gen_ms); + decode_ms, + num_generated * 1000.0 / decode_ms); printf("Prompt tokens: %ld\n", num_prompt_tokens); return 0; diff --git a/examples/models/qwen3_5_moe/model.py b/examples/models/qwen3_5_moe/model.py index 7a5de092a2a..d27e8c6cd49 100644 --- a/examples/models/qwen3_5_moe/model.py +++ b/examples/models/qwen3_5_moe/model.py @@ -177,10 +177,29 @@ def _apply_rotary(x, cos, sin): return torch.cat([x1 * cos - x2 * sin, x2 * cos + x1 * sin], dim=-1) +# --------------------------------------------------------------------------- +# KV Cache + + +class KVCache(nn.Module): + + def __init__(self, n_kv_heads, head_dim, max_seq_len): + super().__init__() + self.register_buffer( + "k_cache", torch.zeros(1, n_kv_heads, max_seq_len, head_dim) + ) + self.register_buffer( + "v_cache", torch.zeros(1, n_kv_heads, max_seq_len, head_dim) + ) + + def update(self, input_pos, k_val, v_val): + self.k_cache[:, :, input_pos] = k_val + self.v_cache[:, :, input_pos] = v_val + return self.k_cache, self.v_cache + + # --------------------------------------------------------------------------- # Full Attention with output gate, QK-norm, partial RoPE -# KV cache state is passed as explicit function arguments (not registered buffers) -# to enable cross-method state sharing in dual-method PTE. class FullAttention(nn.Module): @@ -209,12 +228,14 @@ def __init__(self, config): self.head_dim, config.partial_rotary_factor, config.rope_theta ) + self.kv_cache = KVCache(self.n_kv_heads, self.head_dim, config.max_seq_len) + mask = torch.tril( torch.ones(config.max_seq_len, config.max_seq_len, dtype=torch.bool) ) self.register_buffer("mask", mask) - def forward(self, x, input_pos, k_cache, v_cache): + def forward(self, x, input_pos): B, T, _ = x.size() dtype = x.dtype @@ -243,16 +264,13 @@ def forward(self, x, input_pos, k_cache, v_cache): k = k.to(dtype).transpose(1, 2) v = v.transpose(1, 2) - # Functional KV cache update (clone + scatter avoids input mutation) - new_k_cache = k_cache.clone() - new_k_cache[:, :, input_pos] = k - new_v_cache = v_cache.clone() - new_v_cache[:, :, input_pos] = v + # KV cache + k, v = self.kv_cache.update(input_pos, k, v) # SDPA with GQA — kernel maps Q heads to KV heads internally attn_mask = self.mask[input_pos].unsqueeze(0).unsqueeze(0) y = F.scaled_dot_product_attention( - q, new_k_cache, new_v_cache, attn_mask=attn_mask, enable_gqa=True + q, k, v, attn_mask=attn_mask, enable_gqa=True ) y = y.transpose(1, 2).contiguous().view(B, T, -1) @@ -261,7 +279,7 @@ def forward(self, x, input_pos, k_cache, v_cache): gate = gate.reshape(B, T, -1) y = y * torch.sigmoid(gate) - return self.o_proj(y), new_k_cache, new_v_cache + return self.o_proj(y) # --------------------------------------------------------------------------- @@ -306,20 +324,29 @@ def __init__(self, config): self.norm = RMSNormGated(self.head_v_dim, eps=config.rms_norm_eps) self.out_proj = nn.Linear(self.value_dim, config.hidden_size, bias=False) - # State is passed as explicit args, not registered buffers. - # Shapes for reference: - # conv_state: [1, conv_dim, conv_kernel_size] - # recurrent_state: [1, num_v_heads, head_k_dim, head_v_dim] + # State buffers + self.register_buffer( + "conv_state", torch.zeros(1, self.conv_dim, config.linear_conv_kernel_dim) + ) + self.register_buffer( + "recurrent_state", + torch.zeros(1, self.num_v_heads, self.head_k_dim, self.head_v_dim), + ) + + def forward(self, x, input_pos): + """GatedDeltaNet with trace-time dispatch. - def _prepare_fla_inputs(self, x, input_pos, conv_state, recurrent_state): - """Shared preprocessing: projection, conv1d, split, normalize, gating.""" + When traced with T=1: uses native PyTorch recurrent delta rule + (AOTI fuses with surrounding ops for maximum decode throughput). + When traced with T>1: uses chunked FLA via triton_op. + """ B, T, _ = x.size() - # Reset state at position 0 (functional — no in-place mutation) - reset = (input_pos[0] == 0).to(conv_state.dtype) + # Reset state at position 0 + reset = (input_pos[0] == 0).to(self.conv_state.dtype) keep = 1.0 - reset - conv_state = conv_state * keep - recurrent_state = recurrent_state * keep + self.conv_state[:B].mul_(keep) + self.recurrent_state[:B].mul_(keep) # Fused projection: split into qkv, z, b, a proj = self.in_proj(x) @@ -333,8 +360,9 @@ def _prepare_fla_inputs(self, x, input_pos, conv_state, recurrent_state): # Causal depthwise conv1d with state (manual, avoids conv1d→conv2d decomposition) qkv_t = mixed_qkv.transpose(1, 2) - conv_input = torch.cat([conv_state, qkv_t], dim=-1) - new_conv_state = conv_input[:, :, -self.conv_kernel_size :] + conv_input = torch.cat([self.conv_state[:B], qkv_t], dim=-1) + with torch.no_grad(): + self.conv_state[:B].copy_(conv_input[:, :, -self.conv_kernel_size :]) w = self.conv1d.weight.squeeze(1).float() # [C, 1, K] -> [C, K] T_conv = conv_input.shape[-1] - self.conv_kernel_size + 1 acc = torch.zeros( @@ -368,28 +396,6 @@ def _prepare_fla_inputs(self, x, input_pos, conv_state, recurrent_state): beta = b.sigmoid() g = -self.A_log.float().exp() * F.softplus(a.float() + self.dt_bias) - return q, k, v, g, beta, z, B, T, new_conv_state, recurrent_state - - def _fla_output(self, output, z, B, T): - """Shared postprocessing: RMSNorm(output) * silu(z) + out_proj.""" - output = output.reshape(-1, self.head_v_dim) - z = z.reshape(-1, self.head_v_dim) - output = self.norm(output, z) - output = output.reshape(B, T, -1) - return self.out_proj(output) - - def forward(self, x, input_pos, conv_state, recurrent_state): - """GatedDeltaNet with runtime dispatch. - - When traced with T=1: uses native PyTorch recurrent delta rule - (AOTI fuses with surrounding ops for maximum decode throughput). - When traced with T>1: uses chunked FLA via triton_op. - - Returns (output, new_conv_state, new_recurrent_state). - """ - q, k, v, g, beta, z, B, T, new_conv_state, recurrent_state = \ - self._prepare_fla_inputs(x, input_pos, conv_state, recurrent_state) - if T == 1: # Native recurrent delta rule — AOTI fuses with surrounding ops scale = self.head_k_dim ** -0.5 @@ -400,7 +406,7 @@ def forward(self, x, input_pos, conv_state, recurrent_state): g_s = g[:, 0] # [B, H] beta_s = beta[:, 0] # [B, H] - state = recurrent_state.float() # [B, H, K, V] + state = self.recurrent_state[:B].float() # [B, H, K, V] # Decay state by exp(g) decay = torch.exp(g_s).unsqueeze(-1).unsqueeze(-1) # [B, H, 1, 1] @@ -417,14 +423,24 @@ def forward(self, x, input_pos, conv_state, recurrent_state): output = torch.einsum('bhkv,bhk->bhv', state, q_s) * scale output = output.unsqueeze(1).to(q.dtype) # [B, 1, H, V] - new_recurrent_state = state.to(recurrent_state.dtype) + with torch.no_grad(): + self.recurrent_state[:B].copy_(state.to(self.recurrent_state.dtype)) else: # Chunked FLA triton_op for prefill - output, new_recurrent_state = torch.ops.triton.chunk_gated_delta_rule( - q, k, v, g, beta, recurrent_state + output, new_state = torch.ops.triton.chunk_gated_delta_rule( + q, k, v, g, beta, self.recurrent_state[:B] ) - return self._fla_output(output, z, B, T), new_conv_state, new_recurrent_state + with torch.no_grad(): + self.recurrent_state[:B].copy_(new_state) + + # Output: RMSNorm(output) * silu(z) + output = output.reshape(-1, self.head_v_dim) + z = z.reshape(-1, self.head_v_dim) + output = self.norm(output, z) + output = output.reshape(B, T, -1) + + return self.out_proj(output) # --------------------------------------------------------------------------- @@ -543,11 +559,10 @@ def __init__(self, config, layer_idx): self.mlp = SparseMoE(config) - def forward(self, x, input_pos, *layer_state): - attn_out, *new_state = self.attn(self.ln_1(x), input_pos, *layer_state) - x = x + attn_out + def forward(self, x, input_pos): + x = x + self.attn(self.ln_1(x), input_pos) x = x + self.mlp(self.ln_2(x)) - return (x, *new_state) + return x class Qwen35MoE(nn.Module): @@ -563,77 +578,13 @@ def __init__(self, config): self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False) def forward( - self, - tokens: torch.LongTensor, - input_pos: torch.LongTensor, - conv_states: torch.Tensor, - recurrent_states: torch.Tensor, - k_caches: torch.Tensor, - v_caches: torch.Tensor, - ) -> tuple: - """Forward with explicit state I/O for dual-method PTE. - - State tensors are packed by type: - conv_states: [num_fla, 1, conv_dim, conv_kernel_size] - recurrent_states: [num_fla, 1, num_v_heads, head_k_dim, head_v_dim] - k_caches: [num_attn, 1, n_kv_heads, max_seq_len, head_dim] - v_caches: [num_attn, 1, n_kv_heads, max_seq_len, head_dim] - - Returns (logits, conv_states, recurrent_states, k_caches, v_caches). - """ + self, tokens: torch.LongTensor, input_pos: torch.LongTensor + ) -> torch.Tensor: x = self.embed_tokens(tokens) - fla_idx = 0 - attn_idx = 0 for layer in self.layers: - if layer.layer_type == "full_attention": - x, new_k, new_v = layer( - x, input_pos, k_caches[attn_idx], v_caches[attn_idx] - ) - k_caches = torch.select_scatter(k_caches, new_k, 0, attn_idx) - v_caches = torch.select_scatter(v_caches, new_v, 0, attn_idx) - attn_idx += 1 - else: - x, new_conv, new_rec = layer( - x, input_pos, conv_states[fla_idx], recurrent_states[fla_idx] - ) - conv_states = torch.select_scatter(conv_states, new_conv, 0, fla_idx) - recurrent_states = torch.select_scatter( - recurrent_states, new_rec, 0, fla_idx - ) - fla_idx += 1 + x = layer(x, input_pos) x = self.norm(x) - logits = self.lm_head(x) - return logits, conv_states, recurrent_states, k_caches, v_caches - - @staticmethod - def make_initial_state(config, dtype=torch.bfloat16, device="cpu"): - """Create zero-initialized state tensors for export/inference.""" - num_fla = sum(1 for t in config.layer_types if t == "linear_attention") - num_attn = sum(1 for t in config.layer_types if t == "full_attention") - - conv_dim = ( - config.linear_num_key_heads * config.linear_key_head_dim * 2 - + config.linear_num_value_heads * config.linear_value_head_dim - ) - - conv_states = torch.zeros( - num_fla, 1, conv_dim, config.linear_conv_kernel_dim, - dtype=dtype, device=device, - ) - recurrent_states = torch.zeros( - num_fla, 1, config.linear_num_value_heads, - config.linear_key_head_dim, config.linear_value_head_dim, - dtype=dtype, device=device, - ) - k_caches = torch.zeros( - num_attn, 1, config.num_kv_heads, config.max_seq_len, config.head_dim, - dtype=dtype, device=device, - ) - v_caches = torch.zeros( - num_attn, 1, config.num_kv_heads, config.max_seq_len, config.head_dim, - dtype=dtype, device=device, - ) - return conv_states, recurrent_states, k_caches, v_caches + return self.lm_head(x) @staticmethod def from_hf_checkpoint(model_dir, max_seq_len=4096): @@ -660,6 +611,9 @@ def from_hf_checkpoint(model_dir, max_seq_len=4096): # Validate runtime_prefixes = ( "lm_head.weight", + ".kv_cache.", + ".conv_state", + ".recurrent_state", ".mask", ".inv_freq", ) From 375e5c093cdfa4419560502cc7edb3dc81ccbac3 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Sun, 5 Apr 2026 23:50:58 -0700 Subject: [PATCH 11/12] lint --- backends/cuda/runtime/cuda_backend.cpp | 21 ++ .../cuda/tests/test_chunk_gated_delta_rule.py | 95 +++++- .../triton/kernels/chunk_gated_delta_rule.py | 279 ++++++++++++++---- examples/models/qwen3_5_moe/export.py | 20 +- examples/models/qwen3_5_moe/inference.py | 9 +- examples/models/qwen3_5_moe/main.cpp | 16 +- examples/models/qwen3_5_moe/model.py | 18 +- 7 files changed, 359 insertions(+), 99 deletions(-) diff --git a/backends/cuda/runtime/cuda_backend.cpp b/backends/cuda/runtime/cuda_backend.cpp index c94d56b796f..f25629cfaa1 100644 --- a/backends/cuda/runtime/cuda_backend.cpp +++ b/backends/cuda/runtime/cuda_backend.cpp @@ -262,6 +262,27 @@ class ET_EXPERIMENTAL CudaBackend final FreeableBuffer* processed, // This will be a empty buffer ArrayRef compile_specs // This will be my empty list ) const override { + // Apply runtime_specs from LoadBackendOptionsMap (if provided) + auto runtime_specs = context.runtime_specs(); + if (runtime_specs.size() > 0) { + for (size_t i = 0; i < runtime_specs.size(); ++i) { + const auto& opt = runtime_specs[i]; + if (std::strcmp(opt.key, kSkipCopyOutputToCpuForMethod) == 0) { + if (auto* val = + std::get_if>( + &opt.value)) { + const_cast(this)->set_skip_copy_method(*val); + } + } else if (std::strcmp(opt.key, kUseSharedCudaStream) == 0) { + if (auto* val = std::get_if(&opt.value)) { + if (*val) { + const_cast(this)->create_shared_cuda_stream(); + } + } + } + } + } + std::string method_name; for (const CompileSpec& spec : compile_specs) { if (std::strcmp(spec.key, "method_name") == 0) { diff --git a/backends/cuda/tests/test_chunk_gated_delta_rule.py b/backends/cuda/tests/test_chunk_gated_delta_rule.py index 6ce177dd70a..b37365bdec4 100644 --- a/backends/cuda/tests/test_chunk_gated_delta_rule.py +++ b/backends/cuda/tests/test_chunk_gated_delta_rule.py @@ -42,7 +42,8 @@ from torch.export import export -B, T, H, K, V = 1, 128, 4, 64, 64 +B, H, K, V = 1, 4, 64, 64 +T = 128 # default T for chunked tests EXECUTORCH_ROOT = os.path.normpath(os.path.join(os.path.dirname(__file__), "../../..")) RUNNER_PATH = os.path.join(EXECUTORCH_ROOT, "cmake-out", "executor_runner") @@ -88,19 +89,24 @@ def _make_inputs_from_fla( gate_logit_normalizer, mask_p=0.0, nonzero_h0=False, + seq_len=T, dtype=torch.bfloat16, device="cuda", ): """Generate inputs following FLA test_chunk() conventions.""" torch.manual_seed(seed) - q = torch.rand(B, T, H, K, dtype=dtype, device=device) - k = torch.rand(B, T, H, K, dtype=dtype, device=device) - v = torch.rand(B, T, H, V, dtype=dtype, device=device) - beta = torch.rand(B, T, H, dtype=torch.float32, device=device).sigmoid().to(dtype) - g = F.logsigmoid(torch.rand(B, T, H, dtype=torch.float32, device=device)) + q = torch.rand(B, seq_len, H, K, dtype=dtype, device=device) + k = torch.rand(B, seq_len, H, K, dtype=dtype, device=device) + v = torch.rand(B, seq_len, H, V, dtype=dtype, device=device) + beta = ( + torch.rand(B, seq_len, H, dtype=torch.float32, device=device) + .sigmoid() + .to(dtype) + ) + g = F.logsigmoid(torch.rand(B, seq_len, H, dtype=torch.float32, device=device)) g = (g / gate_logit_normalizer).to(dtype) if mask_p > 0: - g = g * (torch.rand(B, T, H, dtype=dtype, device=device) > mask_p) + g = g * (torch.rand(B, seq_len, H, dtype=dtype, device=device) > mask_p) if nonzero_h0: h0 = torch.randn(B, H, K, V, dtype=dtype, device=device) else: @@ -108,12 +114,12 @@ def _make_inputs_from_fla( return q, k, v, g, beta, h0 -def _make_inputs(dtype=torch.bfloat16, device="cuda"): - q = torch.randn(B, T, H, K, dtype=dtype, device=device) - k = torch.randn(B, T, H, K, dtype=dtype, device=device) - v = torch.randn(B, T, H, V, dtype=dtype, device=device) - g = F.logsigmoid(torch.randn(B, T, H, dtype=dtype, device=device)) - beta = torch.rand(B, T, H, dtype=dtype, device=device).sigmoid() +def _make_inputs(seq_len=T, dtype=torch.bfloat16, device="cuda"): + q = torch.randn(B, seq_len, H, K, dtype=dtype, device=device) + k = torch.randn(B, seq_len, H, K, dtype=dtype, device=device) + v = torch.randn(B, seq_len, H, V, dtype=dtype, device=device) + g = F.logsigmoid(torch.randn(B, seq_len, H, dtype=dtype, device=device)) + beta = torch.rand(B, seq_len, H, dtype=dtype, device=device).sigmoid() initial_state = torch.randn(B, H, K, V, dtype=dtype, device=device) return q, k, v, g, beta, initial_state @@ -252,6 +258,69 @@ def test_eager_matches_fla(self): self.assertLess((o_ours.float() - o_ref.float()).abs().max().item(), 0.01) + def test_recurrent_t1(self): + """T=1 (decode) uses recurrent kernel — verify vs naive reference.""" + from fla.ops.gated_delta_rule.naive import naive_recurrent_gated_delta_rule + + model = ChunkGatedDeltaModel().eval() + for seed, norm, mask_p, nonzero_h0, desc in FLA_TEST_CONFIGS: + with self.subTest(desc=desc): + inputs = _make_inputs_from_fla( + seed, norm, mask_p, nonzero_h0, seq_len=1 + ) + q, k, v, g, beta, h0 = inputs + + with torch.no_grad(): + o_ours, s_ours = model(q, k, v, g, beta, h0) + + o_ref, s_ref = naive_recurrent_gated_delta_rule( + q=F.normalize(q, p=2, dim=-1), + k=F.normalize(k, p=2, dim=-1), + v=v, + beta=beta, + g=g, + initial_state=h0, + output_final_state=True, + ) + + self.assertEqual(o_ours.shape, torch.Size([B, 1, H, V])) + self.assertEqual(s_ours.shape, torch.Size([B, H, K, V])) + o_diff = (o_ours.float() - o_ref.float()).abs().max().item() + s_diff = (s_ours.float() - s_ref.float()).abs().max().item() + self.assertLess(o_diff, 0.01, f"{desc}: output diff {o_diff}") + self.assertLess(s_diff, 0.01, f"{desc}: state diff {s_diff}") + + def test_dispatch_multiple_seq_lengths(self): + """Verify correctness across T values hitting both dispatch paths.""" + from fla.ops.gated_delta_rule.naive import naive_recurrent_gated_delta_rule + + model = ChunkGatedDeltaModel().eval() + # T=1 → recurrent, T>1 → chunked; include boundary values + for seq_len in [1, 2, 32, 63, 64, 65, 128, 256]: + with self.subTest(T=seq_len): + inputs = _make_inputs_from_fla(42, 1.0, 0.0, True, seq_len=seq_len) + q, k, v, g, beta, h0 = inputs + + with torch.no_grad(): + o_ours, s_ours = model(q, k, v, g, beta, h0) + + o_ref, s_ref = naive_recurrent_gated_delta_rule( + q=F.normalize(q, p=2, dim=-1), + k=F.normalize(k, p=2, dim=-1), + v=v, + beta=beta, + g=g, + initial_state=h0, + output_final_state=True, + ) + + self.assertEqual(o_ours.shape, torch.Size([B, seq_len, H, V])) + self.assertEqual(s_ours.shape, torch.Size([B, H, K, V])) + o_diff = (o_ours.float() - o_ref.float()).abs().max().item() + s_diff = (s_ours.float() - s_ref.float()).abs().max().item() + self.assertLess(o_diff, 0.02, f"T={seq_len}: output diff {o_diff}") + self.assertLess(s_diff, 0.02, f"T={seq_len}: state diff {s_diff}") + def test_export_cuda(self): with tempfile.TemporaryDirectory() as tmpdir: pte_path = export_chunk_gated_delta(tmpdir) diff --git a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py index 437374457a1..f4a104e577c 100644 --- a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py +++ b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py @@ -23,11 +23,17 @@ We unwrap via kernel.fn to get the inner @triton.autotune kernel and pass the heuristic-computed constexprs explicitly. +Runtime dispatch: when T=1 (decode), uses a fused recurrent kernel that is +~25% faster than the chunked path. When T>1 (prefill), uses the full chunked +FLA pipeline. Dispatch happens inside the triton_op Python wrapper, following +the same pattern as sdpa.py's pow2/non-pow2 dispatch. + Requires: pip install flash-linear-attention """ import torch import triton +import triton.language as tl from fla.ops.common.chunk_delta_h import chunk_gated_delta_rule_fwd_kernel_h_blockdim64 from fla.ops.common.chunk_o import chunk_fwd_kernel_o @@ -50,69 +56,158 @@ def _unwrap(kernel): return kernel -def _validate_inputs(q, k, v, g, beta, initial_state): - B, T, H, K = q.shape - V = v.shape[-1] - if k.shape != (B, T, H, K): - raise ValueError(f"k shape {k.shape} != expected {(B, T, H, K)}") - if v.shape != (B, T, H, V): - raise ValueError(f"v shape {v.shape} != expected {(B, T, H, V)}") - if g.shape != (B, T, H): - raise ValueError(f"g shape {g.shape} != expected {(B, T, H)}") - if beta.shape != (B, T, H): - raise ValueError(f"beta shape {beta.shape} != expected {(B, T, H)}") - if initial_state.shape != (B, H, K, V): - raise ValueError( - f"initial_state shape {initial_state.shape} != expected {(B, H, K, V)}" - ) - if not (q.dtype == k.dtype == v.dtype): - raise ValueError("q, k, v must have the same dtype") - if not ( - q.device - == k.device - == v.device - == g.device - == beta.device - == initial_state.device - ): - raise ValueError("All tensors must be on the same device") - if K > 256: - raise ValueError(f"Head dim K={K} exceeds maximum 256") +# --------------------------------------------------------------------------- +# Recurrent kernel: fused single-step gated delta rule for T=1 decode. +# +# Grid: (V // BV, B * H) — one block per (batch, head, v_tile). +# Each block handles a [K, BV] slice of the state matrix. +# Parallelizing over V tiles increases SM occupancy from 32 to 128+ blocks. +# --------------------------------------------------------------------------- -@triton_op("triton::chunk_gated_delta_rule", mutates_args={}) -def chunk_gated_delta_rule( - q: torch.Tensor, - k: torch.Tensor, - v: torch.Tensor, - g: torch.Tensor, - beta: torch.Tensor, - initial_state: torch.Tensor, -) -> tuple[torch.Tensor, torch.Tensor]: - """ - Chunked gated delta rule linear attention (forward only). +@triton.jit +def _recurrent_gated_delta_rule_kernel( + # Pointers — all inputs [B, 1, H, *] squeezed to [B, H, *] + q_ptr, # [B, H, K] + k_ptr, # [B, H, K] + v_ptr, # [B, H, V] + g_ptr, # [B, H] + beta_ptr, # [B, H] + state_ptr, # [B, H, K, V] input state (read) + o_ptr, # [B, H, V] output + new_state_ptr, # [B, H, K, V] output state (write) + # Dims + K: tl.constexpr, + V: tl.constexpr, + BK: tl.constexpr, # block size for K dimension (= K, power of 2) + BV: tl.constexpr, # block size for V dimension (tile size) + scale: tl.constexpr, +): + # Grid: (V // BV, B * H) + v_tile_idx = tl.program_id(0) + bh = tl.program_id(1) + + # V-tile range for this block + v_start = v_tile_idx * BV + v_range = v_start + tl.arange(0, BV) + v_mask = v_range < V + + # Load scalar g and beta for this (b, h) + g_val = tl.load(g_ptr + bh).to(tl.float32) + beta_val = tl.load(beta_ptr + bh).to(tl.float32) + decay = tl.exp(g_val) + + # Load full q and k vectors: [K] + qk_base = bh * K + k_range = tl.arange(0, BK) + k_mask = k_range < K + + q_vec = tl.load(q_ptr + qk_base + k_range, mask=k_mask, other=0.0).to(tl.float32) + k_vec = tl.load(k_ptr + qk_base + k_range, mask=k_mask, other=0.0).to(tl.float32) + + # Load v tile: [BV] + v_base = bh * V + v_tile = tl.load(v_ptr + v_base + v_range, mask=v_mask, other=0.0).to(tl.float32) + + # Load state tile: [BK, BV] — state[k, v] at state_base + k*V + v + state_base = bh * K * V + s_offsets = k_range[:, None] * V + v_range[None, :] + s_mask = k_mask[:, None] & v_mask[None, :] + state_tile = tl.load( + state_ptr + state_base + s_offsets, mask=s_mask, other=0.0 + ).to(tl.float32) + + # Step 1: state *= exp(g) + state_tile = state_tile * decay + + # Step 2: Sk = state^T @ k → [BV] (dot product along K) + Sk = tl.sum(state_tile * k_vec[:, None], axis=0) + + # Step 3: delta = v - Sk + delta = v_tile - Sk + + # Step 4: state += beta * outer(k, delta) + state_tile = state_tile + beta_val * (k_vec[:, None] * delta[None, :]) + + # Step 5: o = state^T @ q → [BV] + o_tile = tl.sum(state_tile * q_vec[:, None], axis=0) * scale + + # Store output tile + tl.store( + o_ptr + v_base + v_range, o_tile.to(o_ptr.dtype.element_ty), mask=v_mask + ) + + # Store new state tile + tl.store( + new_state_ptr + state_base + s_offsets, + state_tile.to(new_state_ptr.dtype.element_ty), + mask=s_mask, + ) + + +def _launch_recurrent(q, k, v, g, beta, initial_state, scale): + """Launch the recurrent kernel for T=1 decode. Args: - q: [B, T, H, K] queries (should be L2-normalized, K <= 256) - k: [B, T, H, K] keys (should be L2-normalized) - v: [B, T, H, V] values - g: [B, T, H] gating in log space - beta: [B, T, H] write strength - initial_state: [B, H, K, V] initial hidden state + q, k, v: [B, 1, H, K/V] — single-step inputs + g, beta: [B, 1, H] — gating and write strength + initial_state: [B, H, K, V] — input hidden state Returns: - o: [B, T, H, V] output - final_state: [B, H, K, V] final hidden state + o: [B, 1, H, V] — output + final_state: [B, H, K, V] — updated hidden state (float32) """ - _validate_inputs(q, k, v, g, beta, initial_state) + B, _, H, K = q.shape + V = v.shape[-1] + + # Squeeze T=1 dim via slicing (avoids .contiguous() copy) + q_2d = q[:, 0] # [B, H, K] + k_2d = k[:, 0] # [B, H, K] + v_2d = v[:, 0] # [B, H, V] + g_2d = g[:, 0] # [B, H] + beta_2d = beta[:, 0] # [B, H] + + o_2d = torch.empty(B, H, V, device=q.device, dtype=q.dtype) + final_state = torch.empty(B, H, K, V, device=q.device, dtype=torch.float32) + + BK = triton.next_power_of_2(K) + BV = 32 # small tiles → low register pressure, high SM occupancy + + grid = (triton.cdiv(V, BV), B * H) + wrap_triton(_recurrent_gated_delta_rule_kernel)[grid]( + q_ptr=q_2d, + k_ptr=k_2d, + v_ptr=v_2d, + g_ptr=g_2d, + beta_ptr=beta_2d, + state_ptr=initial_state, + o_ptr=o_2d, + new_state_ptr=final_state, + K=K, + V=V, + BK=BK, + BV=BV, + scale=scale, + ) + + # Unsqueeze back to [B, 1, H, V] + o = o_2d.unsqueeze(1) + return o, final_state + +# --------------------------------------------------------------------------- +# Chunked kernel: full FLA pipeline for T>1 prefill. +# --------------------------------------------------------------------------- + + +def _launch_chunked(q, k, v, g, beta, initial_state, scale): + """Launch the chunked FLA pipeline for T>1 prefill.""" B, T, H, K = q.shape V = v.shape[-1] BT = CHUNK_SIZE NT = triton.cdiv(T, BT) - scale = K**-0.5 - # 1. chunk_local_cumsum: cumulative sum of g within each chunk + # 1. chunk_local_cumsum g_cumsum = torch.empty(B, T, H, dtype=torch.float32, device=q.device) wrap_triton(_unwrap(chunk_local_cumsum_scalar_kernel))[(NT, B * H)]( s=g, @@ -130,7 +225,7 @@ def chunk_gated_delta_rule( IS_VARLEN=False, ) - # 2. chunk_scaled_dot_kkt: compute beta * K * K^T with gating + # 2. chunk_scaled_dot_kkt A = torch.empty(B, T, H, BT, device=q.device, dtype=torch.float32) wrap_triton(_unwrap(chunk_scaled_dot_kkt_fwd_kernel))[(NT, B * H)]( k=k, @@ -147,8 +242,7 @@ def chunk_gated_delta_rule( IS_VARLEN=False, ) - # 3. solve_tril: (I + A)^{-1} via block triangular solve - # Output in k.dtype (not float32) to match FLA's solve_tril(output_dtype=k.dtype) + # 3. solve_tril Ai = torch.zeros_like(A, dtype=k.dtype) wrap_triton(_unwrap(merge_16x16_to_64x64_inverse_kernel))[NT, B * H]( A=A, @@ -162,7 +256,7 @@ def chunk_gated_delta_rule( IS_VARLEN=False, ) - # 4. recompute_w_u: WY representation + # 4. recompute_w_u w = torch.empty_like(k) u = torch.empty_like(v) wrap_triton(_unwrap(recompute_w_u_fwd_kernel))[(NT, B * H)]( @@ -186,7 +280,7 @@ def chunk_gated_delta_rule( IS_VARLEN=False, ) - # 5. chunk_gated_delta_rule_fwd_h: inter-chunk recurrence + # 5. chunk_gated_delta_rule_fwd_h h = torch.empty(B, NT, H, K, V, dtype=q.dtype, device=q.device) final_state = torch.zeros(B, H, K, V, dtype=torch.float32, device=q.device) v_new = torch.empty_like(v) @@ -221,7 +315,7 @@ def grid_h(meta): IS_VARLEN=False, ) - # 6. chunk_fwd_o: output computation + # 6. chunk_fwd_o o = torch.empty_like(v) def grid_o(meta): @@ -252,6 +346,79 @@ def grid_o(meta): return o, final_state +# --------------------------------------------------------------------------- +# Public API: single triton_op with runtime dispatch. +# --------------------------------------------------------------------------- + + +def _validate_inputs(q, k, v, g, beta, initial_state): + B, T, H, K = q.shape + V = v.shape[-1] + if k.shape != (B, T, H, K): + raise ValueError(f"k shape {k.shape} != expected {(B, T, H, K)}") + if v.shape != (B, T, H, V): + raise ValueError(f"v shape {v.shape} != expected {(B, T, H, V)}") + if g.shape != (B, T, H): + raise ValueError(f"g shape {g.shape} != expected {(B, T, H)}") + if beta.shape != (B, T, H): + raise ValueError(f"beta shape {beta.shape} != expected {(B, T, H)}") + if initial_state.shape != (B, H, K, V): + raise ValueError( + f"initial_state shape {initial_state.shape} != expected {(B, H, K, V)}" + ) + if not (q.dtype == k.dtype == v.dtype): + raise ValueError("q, k, v must have the same dtype") + if not ( + q.device + == k.device + == v.device + == g.device + == beta.device + == initial_state.device + ): + raise ValueError("All tensors must be on the same device") + if K > 256: + raise ValueError(f"Head dim K={K} exceeds maximum 256") + + +@triton_op("triton::chunk_gated_delta_rule", mutates_args={}) +def chunk_gated_delta_rule( + q: torch.Tensor, + k: torch.Tensor, + v: torch.Tensor, + g: torch.Tensor, + beta: torch.Tensor, + initial_state: torch.Tensor, +) -> tuple[torch.Tensor, torch.Tensor]: + """ + Gated delta rule linear attention (forward only). + + Runtime dispatch: T=1 uses a fused recurrent kernel (faster for decode), + T>1 uses the full chunked FLA pipeline (efficient for prefill). + + Args: + q: [B, T, H, K] queries (should be L2-normalized, K <= 256) + k: [B, T, H, K] keys (should be L2-normalized) + v: [B, T, H, V] values + g: [B, T, H] gating in log space + beta: [B, T, H] write strength + initial_state: [B, H, K, V] initial hidden state + + Returns: + o: [B, T, H, V] output + final_state: [B, H, K, V] final hidden state + """ + _validate_inputs(q, k, v, g, beta, initial_state) + + B, T, H, K = q.shape + scale = K**-0.5 + + if T == 1: + return _launch_recurrent(q, k, v, g, beta, initial_state, scale) + else: + return _launch_chunked(q, k, v, g, beta, initial_state, scale) + + @chunk_gated_delta_rule.register_fake def _chunk_gated_delta_rule_fake( q: torch.Tensor, diff --git a/examples/models/qwen3_5_moe/export.py b/examples/models/qwen3_5_moe/export.py index 0638ccf16dd..19a720a2e79 100644 --- a/examples/models/qwen3_5_moe/export.py +++ b/examples/models/qwen3_5_moe/export.py @@ -430,8 +430,8 @@ def export_and_lower(model, config, args): prefill_pos = torch.tensor([0, 1], dtype=torch.long) seq_dim = Dim("seq_len", min=2, max=config.max_seq_len - 1) prefill_dynamic_shapes = ( - {1: seq_dim}, # tokens - {0: seq_dim}, # input_pos + {1: seq_dim}, # tokens + {0: seq_dim}, # input_pos ) with torch.no_grad(): prefill_ep = export( @@ -456,12 +456,16 @@ def export_and_lower(model, config, args): et_prog = to_edge_transform_and_lower( {"decode": decode_ep, "prefill": prefill_ep}, partitioner={ - "decode": [CudaPartitioner( - [CudaBackend.generate_method_name_compile_spec("decode")] - )], - "prefill": [CudaPartitioner( - [CudaBackend.generate_method_name_compile_spec("prefill")] - )], + "decode": [ + CudaPartitioner( + [CudaBackend.generate_method_name_compile_spec("decode")] + ) + ], + "prefill": [ + CudaPartitioner( + [CudaBackend.generate_method_name_compile_spec("prefill")] + ) + ], }, compile_config=EdgeCompileConfig( _check_ir_validity=False, diff --git a/examples/models/qwen3_5_moe/inference.py b/examples/models/qwen3_5_moe/inference.py index ce9de9230af..b1450ea543d 100644 --- a/examples/models/qwen3_5_moe/inference.py +++ b/examples/models/qwen3_5_moe/inference.py @@ -73,18 +73,17 @@ def _move_to_cuda(model, config): def generate( model, tokenizer, prompt, max_new_tokens=128, temperature=0.0, eos_token_ids=None ): - """Generate text autoregressively with KV cache. + """Generate text autoregressively. - Prefills one token at a time (the chunk_gated_delta_rule kernel's chunked - path has numerical issues with T>1 in eager mode; token-by-token uses the - stable recurrent path). + State (KV cache, conv_state, recurrent_state) is managed internally + via registered buffers — the model signature is just (tokens, input_pos). """ if eos_token_ids is None: eos_token_ids = set() input_ids = tokenizer.encode(prompt).ids - # Prefill: one token at a time + # Prefill: one token at a time (recurrent path is stable for T=1) with torch.no_grad(): for i, tok_id in enumerate(input_ids): tok = torch.tensor([[tok_id]], dtype=torch.long, device="cuda") diff --git a/examples/models/qwen3_5_moe/main.cpp b/examples/models/qwen3_5_moe/main.cpp index 8b894fc9c96..c327d9e91fd 100644 --- a/examples/models/qwen3_5_moe/main.cpp +++ b/examples/models/qwen3_5_moe/main.cpp @@ -28,11 +28,11 @@ DEFINE_double(temperature, 0.8, "Sampling temperature (0 = greedy)."); DEFINE_int32(max_new_tokens, 128, "Maximum tokens to generate."); namespace llm = ::executorch::extension::llm; -using ::executorch::extension::Module; using ::executorch::extension::from_blob; +using ::executorch::extension::Module; using ::executorch::extension::TensorPtr; -using ::executorch::runtime::EValue; using ::executorch::runtime::Error; +using ::executorch::runtime::EValue; using SizesType = executorch::aten::SizesType; @@ -146,9 +146,9 @@ int main(int argc, char** argv) { std::make_shared(std::move(logits_tensor)); uint64_t cur_token = llm::logits_to_token(*logits_ptr, FLAGS_temperature); - double prefill_ms = std::chrono::duration( - prefill_end - prefill_start) - .count(); + double prefill_ms = + std::chrono::duration(prefill_end - prefill_start) + .count(); printf( "Prefill: %ld tokens in %.1f ms (%.1f tok/s)\n", num_prompt_tokens, @@ -213,9 +213,9 @@ int main(int argc, char** argv) { printf("\n"); int64_t num_generated = pos - num_prompt_tokens; - double decode_ms = std::chrono::duration( - decode_end - decode_start) - .count(); + double decode_ms = + std::chrono::duration(decode_end - decode_start) + .count(); printf( "Decode: %ld tokens in %.1f ms (%.1f tok/s)\n", num_generated, diff --git a/examples/models/qwen3_5_moe/model.py b/examples/models/qwen3_5_moe/model.py index cb503802165..751915fb123 100644 --- a/examples/models/qwen3_5_moe/model.py +++ b/examples/models/qwen3_5_moe/model.py @@ -414,13 +414,13 @@ def forward(self, x, input_pos): if T == 1: # Native recurrent delta rule — AOTI fuses with surrounding ops - scale = self.head_k_dim ** -0.5 + scale = self.head_k_dim**-0.5 - q_s = q[:, 0].float() # [B, H, K] - k_s = k[:, 0].float() # [B, H, K] - v_s = v[:, 0].float() # [B, H, V] - g_s = g[:, 0] # [B, H] - beta_s = beta[:, 0] # [B, H] + q_s = q[:, 0].float() # [B, H, K] + k_s = k[:, 0].float() # [B, H, K] + v_s = v[:, 0].float() # [B, H, V] + g_s = g[:, 0] # [B, H] + beta_s = beta[:, 0] # [B, H] state = self.recurrent_state[:B].float() # [B, H, K, V] @@ -429,14 +429,14 @@ def forward(self, x, input_pos): state = state * decay # Sk = state @ k (project state by key) - Sk = torch.einsum('bhkv,bhk->bhv', state, k_s) + Sk = torch.einsum("bhkv,bhk->bhv", state, k_s) # Delta rule state update delta = beta_s.unsqueeze(-1) * (v_s - Sk) # [B, H, V] - state = state + torch.einsum('bhk,bhv->bhkv', k_s, delta) + state = state + torch.einsum("bhk,bhv->bhkv", k_s, delta) # Output = state @ q * scale - output = torch.einsum('bhkv,bhk->bhv', state, q_s) * scale + output = torch.einsum("bhkv,bhk->bhv", state, q_s) * scale output = output.unsqueeze(1).to(q.dtype) # [B, 1, H, V] with torch.no_grad(): From 2b367970489cf97377a1848eac2a58369c6978f2 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Sun, 5 Apr 2026 23:52:51 -0700 Subject: [PATCH 12/12] remove reduntdant updates --- backends/cuda/runtime/cuda_backend.cpp | 21 -- .../cuda/tests/test_chunk_gated_delta_rule.py | 95 +----- .../triton/kernels/chunk_gated_delta_rule.py | 279 ++++-------------- examples/models/qwen3_5_moe/inference.py | 9 +- 4 files changed, 74 insertions(+), 330 deletions(-) diff --git a/backends/cuda/runtime/cuda_backend.cpp b/backends/cuda/runtime/cuda_backend.cpp index f25629cfaa1..c94d56b796f 100644 --- a/backends/cuda/runtime/cuda_backend.cpp +++ b/backends/cuda/runtime/cuda_backend.cpp @@ -262,27 +262,6 @@ class ET_EXPERIMENTAL CudaBackend final FreeableBuffer* processed, // This will be a empty buffer ArrayRef compile_specs // This will be my empty list ) const override { - // Apply runtime_specs from LoadBackendOptionsMap (if provided) - auto runtime_specs = context.runtime_specs(); - if (runtime_specs.size() > 0) { - for (size_t i = 0; i < runtime_specs.size(); ++i) { - const auto& opt = runtime_specs[i]; - if (std::strcmp(opt.key, kSkipCopyOutputToCpuForMethod) == 0) { - if (auto* val = - std::get_if>( - &opt.value)) { - const_cast(this)->set_skip_copy_method(*val); - } - } else if (std::strcmp(opt.key, kUseSharedCudaStream) == 0) { - if (auto* val = std::get_if(&opt.value)) { - if (*val) { - const_cast(this)->create_shared_cuda_stream(); - } - } - } - } - } - std::string method_name; for (const CompileSpec& spec : compile_specs) { if (std::strcmp(spec.key, "method_name") == 0) { diff --git a/backends/cuda/tests/test_chunk_gated_delta_rule.py b/backends/cuda/tests/test_chunk_gated_delta_rule.py index b37365bdec4..6ce177dd70a 100644 --- a/backends/cuda/tests/test_chunk_gated_delta_rule.py +++ b/backends/cuda/tests/test_chunk_gated_delta_rule.py @@ -42,8 +42,7 @@ from torch.export import export -B, H, K, V = 1, 4, 64, 64 -T = 128 # default T for chunked tests +B, T, H, K, V = 1, 128, 4, 64, 64 EXECUTORCH_ROOT = os.path.normpath(os.path.join(os.path.dirname(__file__), "../../..")) RUNNER_PATH = os.path.join(EXECUTORCH_ROOT, "cmake-out", "executor_runner") @@ -89,24 +88,19 @@ def _make_inputs_from_fla( gate_logit_normalizer, mask_p=0.0, nonzero_h0=False, - seq_len=T, dtype=torch.bfloat16, device="cuda", ): """Generate inputs following FLA test_chunk() conventions.""" torch.manual_seed(seed) - q = torch.rand(B, seq_len, H, K, dtype=dtype, device=device) - k = torch.rand(B, seq_len, H, K, dtype=dtype, device=device) - v = torch.rand(B, seq_len, H, V, dtype=dtype, device=device) - beta = ( - torch.rand(B, seq_len, H, dtype=torch.float32, device=device) - .sigmoid() - .to(dtype) - ) - g = F.logsigmoid(torch.rand(B, seq_len, H, dtype=torch.float32, device=device)) + q = torch.rand(B, T, H, K, dtype=dtype, device=device) + k = torch.rand(B, T, H, K, dtype=dtype, device=device) + v = torch.rand(B, T, H, V, dtype=dtype, device=device) + beta = torch.rand(B, T, H, dtype=torch.float32, device=device).sigmoid().to(dtype) + g = F.logsigmoid(torch.rand(B, T, H, dtype=torch.float32, device=device)) g = (g / gate_logit_normalizer).to(dtype) if mask_p > 0: - g = g * (torch.rand(B, seq_len, H, dtype=dtype, device=device) > mask_p) + g = g * (torch.rand(B, T, H, dtype=dtype, device=device) > mask_p) if nonzero_h0: h0 = torch.randn(B, H, K, V, dtype=dtype, device=device) else: @@ -114,12 +108,12 @@ def _make_inputs_from_fla( return q, k, v, g, beta, h0 -def _make_inputs(seq_len=T, dtype=torch.bfloat16, device="cuda"): - q = torch.randn(B, seq_len, H, K, dtype=dtype, device=device) - k = torch.randn(B, seq_len, H, K, dtype=dtype, device=device) - v = torch.randn(B, seq_len, H, V, dtype=dtype, device=device) - g = F.logsigmoid(torch.randn(B, seq_len, H, dtype=dtype, device=device)) - beta = torch.rand(B, seq_len, H, dtype=dtype, device=device).sigmoid() +def _make_inputs(dtype=torch.bfloat16, device="cuda"): + q = torch.randn(B, T, H, K, dtype=dtype, device=device) + k = torch.randn(B, T, H, K, dtype=dtype, device=device) + v = torch.randn(B, T, H, V, dtype=dtype, device=device) + g = F.logsigmoid(torch.randn(B, T, H, dtype=dtype, device=device)) + beta = torch.rand(B, T, H, dtype=dtype, device=device).sigmoid() initial_state = torch.randn(B, H, K, V, dtype=dtype, device=device) return q, k, v, g, beta, initial_state @@ -258,69 +252,6 @@ def test_eager_matches_fla(self): self.assertLess((o_ours.float() - o_ref.float()).abs().max().item(), 0.01) - def test_recurrent_t1(self): - """T=1 (decode) uses recurrent kernel — verify vs naive reference.""" - from fla.ops.gated_delta_rule.naive import naive_recurrent_gated_delta_rule - - model = ChunkGatedDeltaModel().eval() - for seed, norm, mask_p, nonzero_h0, desc in FLA_TEST_CONFIGS: - with self.subTest(desc=desc): - inputs = _make_inputs_from_fla( - seed, norm, mask_p, nonzero_h0, seq_len=1 - ) - q, k, v, g, beta, h0 = inputs - - with torch.no_grad(): - o_ours, s_ours = model(q, k, v, g, beta, h0) - - o_ref, s_ref = naive_recurrent_gated_delta_rule( - q=F.normalize(q, p=2, dim=-1), - k=F.normalize(k, p=2, dim=-1), - v=v, - beta=beta, - g=g, - initial_state=h0, - output_final_state=True, - ) - - self.assertEqual(o_ours.shape, torch.Size([B, 1, H, V])) - self.assertEqual(s_ours.shape, torch.Size([B, H, K, V])) - o_diff = (o_ours.float() - o_ref.float()).abs().max().item() - s_diff = (s_ours.float() - s_ref.float()).abs().max().item() - self.assertLess(o_diff, 0.01, f"{desc}: output diff {o_diff}") - self.assertLess(s_diff, 0.01, f"{desc}: state diff {s_diff}") - - def test_dispatch_multiple_seq_lengths(self): - """Verify correctness across T values hitting both dispatch paths.""" - from fla.ops.gated_delta_rule.naive import naive_recurrent_gated_delta_rule - - model = ChunkGatedDeltaModel().eval() - # T=1 → recurrent, T>1 → chunked; include boundary values - for seq_len in [1, 2, 32, 63, 64, 65, 128, 256]: - with self.subTest(T=seq_len): - inputs = _make_inputs_from_fla(42, 1.0, 0.0, True, seq_len=seq_len) - q, k, v, g, beta, h0 = inputs - - with torch.no_grad(): - o_ours, s_ours = model(q, k, v, g, beta, h0) - - o_ref, s_ref = naive_recurrent_gated_delta_rule( - q=F.normalize(q, p=2, dim=-1), - k=F.normalize(k, p=2, dim=-1), - v=v, - beta=beta, - g=g, - initial_state=h0, - output_final_state=True, - ) - - self.assertEqual(o_ours.shape, torch.Size([B, seq_len, H, V])) - self.assertEqual(s_ours.shape, torch.Size([B, H, K, V])) - o_diff = (o_ours.float() - o_ref.float()).abs().max().item() - s_diff = (s_ours.float() - s_ref.float()).abs().max().item() - self.assertLess(o_diff, 0.02, f"T={seq_len}: output diff {o_diff}") - self.assertLess(s_diff, 0.02, f"T={seq_len}: state diff {s_diff}") - def test_export_cuda(self): with tempfile.TemporaryDirectory() as tmpdir: pte_path = export_chunk_gated_delta(tmpdir) diff --git a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py index f4a104e577c..437374457a1 100644 --- a/backends/cuda/triton/kernels/chunk_gated_delta_rule.py +++ b/backends/cuda/triton/kernels/chunk_gated_delta_rule.py @@ -23,17 +23,11 @@ We unwrap via kernel.fn to get the inner @triton.autotune kernel and pass the heuristic-computed constexprs explicitly. -Runtime dispatch: when T=1 (decode), uses a fused recurrent kernel that is -~25% faster than the chunked path. When T>1 (prefill), uses the full chunked -FLA pipeline. Dispatch happens inside the triton_op Python wrapper, following -the same pattern as sdpa.py's pow2/non-pow2 dispatch. - Requires: pip install flash-linear-attention """ import torch import triton -import triton.language as tl from fla.ops.common.chunk_delta_h import chunk_gated_delta_rule_fwd_kernel_h_blockdim64 from fla.ops.common.chunk_o import chunk_fwd_kernel_o @@ -56,158 +50,69 @@ def _unwrap(kernel): return kernel -# --------------------------------------------------------------------------- -# Recurrent kernel: fused single-step gated delta rule for T=1 decode. -# -# Grid: (V // BV, B * H) — one block per (batch, head, v_tile). -# Each block handles a [K, BV] slice of the state matrix. -# Parallelizing over V tiles increases SM occupancy from 32 to 128+ blocks. -# --------------------------------------------------------------------------- - - -@triton.jit -def _recurrent_gated_delta_rule_kernel( - # Pointers — all inputs [B, 1, H, *] squeezed to [B, H, *] - q_ptr, # [B, H, K] - k_ptr, # [B, H, K] - v_ptr, # [B, H, V] - g_ptr, # [B, H] - beta_ptr, # [B, H] - state_ptr, # [B, H, K, V] input state (read) - o_ptr, # [B, H, V] output - new_state_ptr, # [B, H, K, V] output state (write) - # Dims - K: tl.constexpr, - V: tl.constexpr, - BK: tl.constexpr, # block size for K dimension (= K, power of 2) - BV: tl.constexpr, # block size for V dimension (tile size) - scale: tl.constexpr, -): - # Grid: (V // BV, B * H) - v_tile_idx = tl.program_id(0) - bh = tl.program_id(1) - - # V-tile range for this block - v_start = v_tile_idx * BV - v_range = v_start + tl.arange(0, BV) - v_mask = v_range < V - - # Load scalar g and beta for this (b, h) - g_val = tl.load(g_ptr + bh).to(tl.float32) - beta_val = tl.load(beta_ptr + bh).to(tl.float32) - decay = tl.exp(g_val) - - # Load full q and k vectors: [K] - qk_base = bh * K - k_range = tl.arange(0, BK) - k_mask = k_range < K - - q_vec = tl.load(q_ptr + qk_base + k_range, mask=k_mask, other=0.0).to(tl.float32) - k_vec = tl.load(k_ptr + qk_base + k_range, mask=k_mask, other=0.0).to(tl.float32) - - # Load v tile: [BV] - v_base = bh * V - v_tile = tl.load(v_ptr + v_base + v_range, mask=v_mask, other=0.0).to(tl.float32) - - # Load state tile: [BK, BV] — state[k, v] at state_base + k*V + v - state_base = bh * K * V - s_offsets = k_range[:, None] * V + v_range[None, :] - s_mask = k_mask[:, None] & v_mask[None, :] - state_tile = tl.load( - state_ptr + state_base + s_offsets, mask=s_mask, other=0.0 - ).to(tl.float32) - - # Step 1: state *= exp(g) - state_tile = state_tile * decay - - # Step 2: Sk = state^T @ k → [BV] (dot product along K) - Sk = tl.sum(state_tile * k_vec[:, None], axis=0) - - # Step 3: delta = v - Sk - delta = v_tile - Sk - - # Step 4: state += beta * outer(k, delta) - state_tile = state_tile + beta_val * (k_vec[:, None] * delta[None, :]) - - # Step 5: o = state^T @ q → [BV] - o_tile = tl.sum(state_tile * q_vec[:, None], axis=0) * scale - - # Store output tile - tl.store( - o_ptr + v_base + v_range, o_tile.to(o_ptr.dtype.element_ty), mask=v_mask - ) - - # Store new state tile - tl.store( - new_state_ptr + state_base + s_offsets, - state_tile.to(new_state_ptr.dtype.element_ty), - mask=s_mask, - ) +def _validate_inputs(q, k, v, g, beta, initial_state): + B, T, H, K = q.shape + V = v.shape[-1] + if k.shape != (B, T, H, K): + raise ValueError(f"k shape {k.shape} != expected {(B, T, H, K)}") + if v.shape != (B, T, H, V): + raise ValueError(f"v shape {v.shape} != expected {(B, T, H, V)}") + if g.shape != (B, T, H): + raise ValueError(f"g shape {g.shape} != expected {(B, T, H)}") + if beta.shape != (B, T, H): + raise ValueError(f"beta shape {beta.shape} != expected {(B, T, H)}") + if initial_state.shape != (B, H, K, V): + raise ValueError( + f"initial_state shape {initial_state.shape} != expected {(B, H, K, V)}" + ) + if not (q.dtype == k.dtype == v.dtype): + raise ValueError("q, k, v must have the same dtype") + if not ( + q.device + == k.device + == v.device + == g.device + == beta.device + == initial_state.device + ): + raise ValueError("All tensors must be on the same device") + if K > 256: + raise ValueError(f"Head dim K={K} exceeds maximum 256") -def _launch_recurrent(q, k, v, g, beta, initial_state, scale): - """Launch the recurrent kernel for T=1 decode. +@triton_op("triton::chunk_gated_delta_rule", mutates_args={}) +def chunk_gated_delta_rule( + q: torch.Tensor, + k: torch.Tensor, + v: torch.Tensor, + g: torch.Tensor, + beta: torch.Tensor, + initial_state: torch.Tensor, +) -> tuple[torch.Tensor, torch.Tensor]: + """ + Chunked gated delta rule linear attention (forward only). Args: - q, k, v: [B, 1, H, K/V] — single-step inputs - g, beta: [B, 1, H] — gating and write strength - initial_state: [B, H, K, V] — input hidden state + q: [B, T, H, K] queries (should be L2-normalized, K <= 256) + k: [B, T, H, K] keys (should be L2-normalized) + v: [B, T, H, V] values + g: [B, T, H] gating in log space + beta: [B, T, H] write strength + initial_state: [B, H, K, V] initial hidden state Returns: - o: [B, 1, H, V] — output - final_state: [B, H, K, V] — updated hidden state (float32) + o: [B, T, H, V] output + final_state: [B, H, K, V] final hidden state """ - B, _, H, K = q.shape - V = v.shape[-1] - - # Squeeze T=1 dim via slicing (avoids .contiguous() copy) - q_2d = q[:, 0] # [B, H, K] - k_2d = k[:, 0] # [B, H, K] - v_2d = v[:, 0] # [B, H, V] - g_2d = g[:, 0] # [B, H] - beta_2d = beta[:, 0] # [B, H] - - o_2d = torch.empty(B, H, V, device=q.device, dtype=q.dtype) - final_state = torch.empty(B, H, K, V, device=q.device, dtype=torch.float32) - - BK = triton.next_power_of_2(K) - BV = 32 # small tiles → low register pressure, high SM occupancy - - grid = (triton.cdiv(V, BV), B * H) - wrap_triton(_recurrent_gated_delta_rule_kernel)[grid]( - q_ptr=q_2d, - k_ptr=k_2d, - v_ptr=v_2d, - g_ptr=g_2d, - beta_ptr=beta_2d, - state_ptr=initial_state, - o_ptr=o_2d, - new_state_ptr=final_state, - K=K, - V=V, - BK=BK, - BV=BV, - scale=scale, - ) - - # Unsqueeze back to [B, 1, H, V] - o = o_2d.unsqueeze(1) - return o, final_state - - -# --------------------------------------------------------------------------- -# Chunked kernel: full FLA pipeline for T>1 prefill. -# --------------------------------------------------------------------------- - + _validate_inputs(q, k, v, g, beta, initial_state) -def _launch_chunked(q, k, v, g, beta, initial_state, scale): - """Launch the chunked FLA pipeline for T>1 prefill.""" B, T, H, K = q.shape V = v.shape[-1] BT = CHUNK_SIZE NT = triton.cdiv(T, BT) + scale = K**-0.5 - # 1. chunk_local_cumsum + # 1. chunk_local_cumsum: cumulative sum of g within each chunk g_cumsum = torch.empty(B, T, H, dtype=torch.float32, device=q.device) wrap_triton(_unwrap(chunk_local_cumsum_scalar_kernel))[(NT, B * H)]( s=g, @@ -225,7 +130,7 @@ def _launch_chunked(q, k, v, g, beta, initial_state, scale): IS_VARLEN=False, ) - # 2. chunk_scaled_dot_kkt + # 2. chunk_scaled_dot_kkt: compute beta * K * K^T with gating A = torch.empty(B, T, H, BT, device=q.device, dtype=torch.float32) wrap_triton(_unwrap(chunk_scaled_dot_kkt_fwd_kernel))[(NT, B * H)]( k=k, @@ -242,7 +147,8 @@ def _launch_chunked(q, k, v, g, beta, initial_state, scale): IS_VARLEN=False, ) - # 3. solve_tril + # 3. solve_tril: (I + A)^{-1} via block triangular solve + # Output in k.dtype (not float32) to match FLA's solve_tril(output_dtype=k.dtype) Ai = torch.zeros_like(A, dtype=k.dtype) wrap_triton(_unwrap(merge_16x16_to_64x64_inverse_kernel))[NT, B * H]( A=A, @@ -256,7 +162,7 @@ def _launch_chunked(q, k, v, g, beta, initial_state, scale): IS_VARLEN=False, ) - # 4. recompute_w_u + # 4. recompute_w_u: WY representation w = torch.empty_like(k) u = torch.empty_like(v) wrap_triton(_unwrap(recompute_w_u_fwd_kernel))[(NT, B * H)]( @@ -280,7 +186,7 @@ def _launch_chunked(q, k, v, g, beta, initial_state, scale): IS_VARLEN=False, ) - # 5. chunk_gated_delta_rule_fwd_h + # 5. chunk_gated_delta_rule_fwd_h: inter-chunk recurrence h = torch.empty(B, NT, H, K, V, dtype=q.dtype, device=q.device) final_state = torch.zeros(B, H, K, V, dtype=torch.float32, device=q.device) v_new = torch.empty_like(v) @@ -315,7 +221,7 @@ def grid_h(meta): IS_VARLEN=False, ) - # 6. chunk_fwd_o + # 6. chunk_fwd_o: output computation o = torch.empty_like(v) def grid_o(meta): @@ -346,79 +252,6 @@ def grid_o(meta): return o, final_state -# --------------------------------------------------------------------------- -# Public API: single triton_op with runtime dispatch. -# --------------------------------------------------------------------------- - - -def _validate_inputs(q, k, v, g, beta, initial_state): - B, T, H, K = q.shape - V = v.shape[-1] - if k.shape != (B, T, H, K): - raise ValueError(f"k shape {k.shape} != expected {(B, T, H, K)}") - if v.shape != (B, T, H, V): - raise ValueError(f"v shape {v.shape} != expected {(B, T, H, V)}") - if g.shape != (B, T, H): - raise ValueError(f"g shape {g.shape} != expected {(B, T, H)}") - if beta.shape != (B, T, H): - raise ValueError(f"beta shape {beta.shape} != expected {(B, T, H)}") - if initial_state.shape != (B, H, K, V): - raise ValueError( - f"initial_state shape {initial_state.shape} != expected {(B, H, K, V)}" - ) - if not (q.dtype == k.dtype == v.dtype): - raise ValueError("q, k, v must have the same dtype") - if not ( - q.device - == k.device - == v.device - == g.device - == beta.device - == initial_state.device - ): - raise ValueError("All tensors must be on the same device") - if K > 256: - raise ValueError(f"Head dim K={K} exceeds maximum 256") - - -@triton_op("triton::chunk_gated_delta_rule", mutates_args={}) -def chunk_gated_delta_rule( - q: torch.Tensor, - k: torch.Tensor, - v: torch.Tensor, - g: torch.Tensor, - beta: torch.Tensor, - initial_state: torch.Tensor, -) -> tuple[torch.Tensor, torch.Tensor]: - """ - Gated delta rule linear attention (forward only). - - Runtime dispatch: T=1 uses a fused recurrent kernel (faster for decode), - T>1 uses the full chunked FLA pipeline (efficient for prefill). - - Args: - q: [B, T, H, K] queries (should be L2-normalized, K <= 256) - k: [B, T, H, K] keys (should be L2-normalized) - v: [B, T, H, V] values - g: [B, T, H] gating in log space - beta: [B, T, H] write strength - initial_state: [B, H, K, V] initial hidden state - - Returns: - o: [B, T, H, V] output - final_state: [B, H, K, V] final hidden state - """ - _validate_inputs(q, k, v, g, beta, initial_state) - - B, T, H, K = q.shape - scale = K**-0.5 - - if T == 1: - return _launch_recurrent(q, k, v, g, beta, initial_state, scale) - else: - return _launch_chunked(q, k, v, g, beta, initial_state, scale) - - @chunk_gated_delta_rule.register_fake def _chunk_gated_delta_rule_fake( q: torch.Tensor, diff --git a/examples/models/qwen3_5_moe/inference.py b/examples/models/qwen3_5_moe/inference.py index b1450ea543d..ce9de9230af 100644 --- a/examples/models/qwen3_5_moe/inference.py +++ b/examples/models/qwen3_5_moe/inference.py @@ -73,17 +73,18 @@ def _move_to_cuda(model, config): def generate( model, tokenizer, prompt, max_new_tokens=128, temperature=0.0, eos_token_ids=None ): - """Generate text autoregressively. + """Generate text autoregressively with KV cache. - State (KV cache, conv_state, recurrent_state) is managed internally - via registered buffers — the model signature is just (tokens, input_pos). + Prefills one token at a time (the chunk_gated_delta_rule kernel's chunked + path has numerical issues with T>1 in eager mode; token-by-token uses the + stable recurrent path). """ if eos_token_ids is None: eos_token_ids = set() input_ids = tokenizer.encode(prompt).ids - # Prefill: one token at a time (recurrent path is stable for T=1) + # Prefill: one token at a time with torch.no_grad(): for i, tok_id in enumerate(input_ids): tok = torch.tensor([[tok_id]], dtype=torch.long, device="cuda")